How to deploy Vue with PM2

I have a vue3 + vitejs application that I would like to deploy on windows with pm2. When I run the npm start myapp command, the status is in error. Can you help me please? ecosystem.config.js name: ‘myapp’, cwd: ‘C:\myapp’, script: ‘npm’, args: ‘run dev’ Thank you. >Solution : What’s the error. Secondly, you shouldn’t… Read More How to deploy Vue with PM2

Typescript transpile errors appear only on production server

Somewhere along the lines of updating my node version / dependencies for both machines, I noticed that building my app in production on another machine outputs an error while building for production on my main machine does not. The errors go away if I move the affected devDependencies to the dependencies array in my package.json,… Read More Typescript transpile errors appear only on production server