mirror of
https://github.com/LukeHagar/vercel.git
synced 2025-12-06 12:57:46 +00:00
This updates the default Nuxt example to start with a static route, plus updates dependencies with the latest version. Demo: https://nuxt-vercel-inky.vercel.app/ --------- Co-authored-by: Trek Glowacki <trek.glowacki@vercel.com>
9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
routeRules: {
|
|
// prerender index route by default
|
|
'/': { prerender: true },
|
|
},
|
|
});
|