Spaces:
Sleeping
Sleeping
File size: 250 Bytes
6b3405c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
// eslint-disable-next-line no-undef
module.exports = {
apps: [
{
name: "production-server",
script: "npm",
args: "start -- --host",
instances: "max",
env: {
NODE_ENV: "production",
},
},
],
};
|