// ecosystem.config.cjs - CommonJS 版本 module.exports = { apps: [ { name: 'docreview-frontend', script: 'node', args: [ '-r', 'dotenv/config', './node_modules/.bin/remix-serve', './build/server/index.js' ], instances: 1, autorestart: true, watch: false, max_memory_restart: '1G', env: { NODE_ENV: 'production', PORT: 51703, }, env_testing: { NODE_ENV: 'testing', PORT: 51703, }, error_file: './logs/err.log', out_file: './logs/out.log', log_file: './logs/combined.log', time: true }, ], };