next.js 와 pm2 -> nextjs

2022. 5. 20. 18:01aws 배포/pm2 명령어

# for development
pm2 start npm --name "next" -- run dev

# for production
npm run build
pm2 start npm --name "next" -- start


"scripts": {
    "start": "node ./node_modules/.bin/pm2 start app.js -i max --attach"
}