Nuxt supports deploying on Heroku with minimal configuration.
heroku create myapp
heroku buildpacks:set heroku/nodejs
heroku config:set SERVER_PRESET=heroku
start and build commands in your package.json file.{
"scripts": {
"build": "nuxt build",
"start": "node .output/server/index.mjs"
}
}