[Vuejs]-How to run "npm run start" from release pipeline Azure DevOps to start production build in NUXTJS?

0👍

I use pm2 (it’s free, https://pm2.keymetrics.io/) to daemonize nuxt on production servers. It works very well with nuxt and it respawns the process if for some reason crashes. That way you will exec a command on startup that will launch nuxt as a daemon in the background, but the command will terminate… that may solve your issue I think.

Leave a comment