You've already forked isop-mirror
22 lines
553 B
TypeScript
22 lines
553 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
|
|
export default defineNuxtConfig({
|
|
// interné pre nuxt, nemeniť
|
|
compatibilityDate: '2025-07-15',
|
|
|
|
// debugovacie nástroje v prehliadači
|
|
devtools: { enabled: true },
|
|
|
|
// externé moduly
|
|
modules: [
|
|
'@nuxt/image', // na obrázky
|
|
'vuetify-nuxt-module' // Vuetify
|
|
],
|
|
|
|
nitro: {
|
|
// statický obsah vyrenderujeme vopred
|
|
prerender: {
|
|
routes: ["/", "/info/student", "/info/company", "/register", "/about"],
|
|
},
|
|
},
|
|
}); |