Answers for "next pm2 start"

1

pm2 start next js

pm2 start yarn --name "nextjs" --interpreter bash -- start
Posted by: Guest on November-10-2021
0

next pm2 start

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

# for production
npm run build
pm2 start npm --name "next" -- start
Posted by: Guest on April-05-2022

Browse Popular Code Answers by Language