mediahub-fe/ecosystem.config.js

15 lines
253 B
JavaScript
Raw Normal View History

2025-10-23 08:24:17 +00:00
module.exports = {
apps: [
{
name: "next-app",
script: "node_modules/next/dist/bin/next",
args: "start -p 3000",
instances: "max",
exec_mode: "cluster",
env: {
NODE_ENV: "production"
}
}
]
}