ecosystem.config.cjs 189 B

1234567891011
  1. module.exports = {
  2. apps: [
  3. {
  4. name: 'Lanu Web',
  5. port: '3000',
  6. exec_mode: 'cluster',
  7. instances: 'max',
  8. script: './.output/server/index.mjs',
  9. },
  10. ],
  11. }