Deploy Nuxt with Vercel
How to deploy a Nuxt app with Vercel?
Static site with Vercel
If you would like to deploy a static site on Vercel, no configuration is necessary. Vercel will detect that you are using Nuxt and will enable the correct settings for your deployment. For more information, see this Vercel guide .
SSR with Vercel
To deploy a serverless Nuxt runtime with Vercel , the Nuxt team and contributors have produced an official @nuxtjs/vercel-builder package.
All you have to do is to setup a vercel.json
file:
{
"builds": [
{
"src": "nuxt.config.js",
"use": "@nuxtjs/vercel-builder",
"config": {}
}
]
}
Check out the documentation for more information.
Service Worker with Nuxt PWA Module
To avoid 404 for Service Workers, make sure to include sw
to your routes settings.
{
"version": 2,
"builds": [
{
"src": "nuxt.config.js",
"use": "@nuxtjs/vercel-builder",
"config": {
"serverFiles": ["package.json"]
}
}
],
"routes": [
{
"src": "/sw.js",
"continue": true,
"headers": {
"Cache-Control": "public, max-age=0, must-revalidate",
"Service-Worker-Allowed": "/"
}
}
]
}
You can learn more and see examples on https://github.com/nuxt/vercel-builder