Nuxt/docs/nuxt.config.ts
Sébastien Chopin a6e4a09dbb
docs: add app.config route to pre-render (#8131)
Co-authored-by: Daniel Roe <daniel@roe.dev>
2022-10-12 18:45:10 +02:00

9 lines
184 B
TypeScript

export default defineNuxtConfig({
extends: '@nuxt-themes/website',
nitro: {
prerender: {
routes: ['/', '/404.html', '/guide/directory-structure/app.config']
}
}
})