Nuxt supports deploying on the Koyeb serverless platform with minimal configuration.
engines.node field in your project's package.json file to a Koyeb-supported version of Node.js:{
"engines": {
"node": "20.x"
}
}
build and start scripts are defined within the project's package.json file to define how to build and run the application:{
"scripts": {
"build": "nuxt build",
"start": "node .output/server/index.mjs"
}
}
SERVER_PRESET=koyeb