I'm trying to deploy a Nuxt 3 website on Plesk, compiled with yarn build. I therefore have the PUBLIC and SERVER folders, which I have on Plesk hosting.
I have the server.js file which is the following:
`const app = require('./.output/server/index.mjs'); const http = require('http');
http.createServer(app).listen(process.env.PORT);`
I can't find a single guide for Nuxt 3, I need to start the application. From my understanding though, Phusion should start processes without launching a manual start command?
Thank you very much