diff --git a/nuxt.config.ts b/nuxt.config.ts index cef3714..4883d99 100755 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -6,6 +6,22 @@ export default defineNuxtConfig({ compatibilityVersion: 4, }, + nitro: { + prerender: { + routes: [ + '/', + '/imprint', + '/privacy', + ] + } + }, + + routeRules: { + '/': { prerender: true }, + '/imprint': { prerender: true }, + '/privacy': { prerender: true }, + }, + modules: [ '@nuxt/icon', ],