diff --git a/ecosystem.config.js b/ecosystem.config.js new file mode 100644 index 0000000..f52558e --- /dev/null +++ b/ecosystem.config.js @@ -0,0 +1,12 @@ +module.exports = { + apps: [ + { + name: 'my-frame', + script: 'npm', + args: 'start', + env: { + NODE_ENV: 'production', + } + } + ] +}; diff --git a/package.json b/package.json index e1309fb..a2264d4 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "scripts": { - "dev": "next dev -p 3001", + "dev": "next dev -p 3031", "build": "next build", "start": "next start -p 4040", "lint": "next lint"