diff --git a/ecosystem.config.cjs b/ecosystem.config.cjs deleted file mode 100644 index a2b2e22..0000000 --- a/ecosystem.config.cjs +++ /dev/null @@ -1,11 +0,0 @@ -module.exports = { - apps: [ - { - name: 'ServerPanel', - port: '6060', - exec_mode: 'cluster', - instances: 'max', - script: './.output/server/index.mjs' - } - ] -} diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..1487ab6 --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,9 @@ +export const apps = [ + { + name: 'ServerPanel', + port: '6060', + exec_mode: 'fork', + instances: 'max', + script: './.output/server/index.mjs' + } +];