refactor: add nitro configuration for prerendering static content

This commit is contained in:
2025-10-20 19:47:12 +02:00
parent 066a55b9df
commit 416829420e

View File

@@ -11,5 +11,12 @@ export default defineNuxtConfig({
modules: [
'@nuxt/image', // na obrázky
'vuetify-nuxt-module' // Vuetify
]
],
nitro: {
// statický obsah vyrenderujeme vopred
prerender: {
routes: ["/", "/info/student", "/info/company", "/register", "/about"],
},
},
});