I'm using SvelteKit (1.0.0) with the node adapter.
I want to use it on my server and start it with pm2
.
What's the best way of starting a Svelte app with a node adapter without npm start
?
I don't need pm2 command, just an npm command for Svelte.
pm2 start node build/index.js --name Example
. Am I doing something wrong? What script do you recommend? – Enabling