Files
netrunner-landing/ecosystem.config.js
T
2026-04-20 13:26:07 +07:00

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",
},
},
],
};