14 lines
240 B
JavaScript
14 lines
240 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: "netrunner-landing",
|
|
script: "node_modules/next/dist/bin/next",
|
|
args: "start -p 3000",
|
|
exec_mode: "fork",
|
|
env: {
|
|
NODE_ENV: "production",
|
|
},
|
|
},
|
|
],
|
|
};
|