After your project has been imported and deployed, all subsequent pushes to branches will generate Preview Deployments, and all changes made to the Production Branch (commonly “main”) will result in a Production Deployment.
Learn more about Vercel’s Git Integration.
It is possible to deploy your Nuxt applications directly on Vercel Edge Functions.
Vercel Edge Functions allow you to deliver content to your site's visitors with speed and personalization. They are deployed globally by default on Vercel's Edge Network and enable you to move server-side logic to the Edge, close to your visitor's origin. Edge Functions use the Vercel Edge Runtime, which is built on the same high-performance V8 JavaScript and WebAssembly engine that is used by the Chrome browser. By taking advantage of this small runtime, Edge Functions can have faster cold boots and higher scalability than Serverless Functions. Edge Functions run after the cache, and can both cache and return responses. Read More
In order to enable this target, set the following environment variable:
SERVER_PRESET=vercel_edge
Or update the build command to nuxt build --preset=vercel_edge.
You can easily use Vercel KV Storage with Nuxt Server Storage.
@vercel/kv dependency:npm i @vercel/kv
nuxt.config.ts:export default defineNuxtConfig({
nitro: {
storage: {
data: {
driver: 'vercelKV'
/* Vercel KV driver options */
}
}
}
})
KV_REST_API_URL and KV_REST_API_TOKEN environment variables or pass url and token to driver options. Check driver docs for more information about usage.You can now access your data store anywhere in your server/ directory:
export default defineEventHandler(async (event) => {
const dataStorage = useStorage('data');
await dataStorage.setItem('hello', 'world');
return {
hello: await dataStorage.getItem("hello"),
}
})
You can provide additional build output configuration using nitro.vercel.config key inside nuxt.config.ts. It will be merged with built-in auto generated config.