Node preset is the default preset for Nuxt, when building your project, Nuxt will output a Node.js server that you can run with node .output/server/index.mjs.
If you are using the default better-sqlite3 module to operate the sqlite database,
then you have to deploy to an OS with Glibc version higher than 2.29, eg. Debian 11, Ubuntu 20.04.
ldd --version to check the Glibc version. Checkout issue #3248 for more details.Build project with Nuxt build command:
nuxi build
When running nuxi build with the Node server preset, the result will be an entry point that launches a ready-to-run Node server.
$ node .output/server/index.mjs
Listening on http://localhost:3000