mirror of
https://github.com/SrIzan10/ssg.git
synced 2026-06-06 01:06:52 +00:00
22 lines
473 B
TypeScript
22 lines
473 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxt/ui'],
|
|
css: ['~/assets/css/main.css'],
|
|
colorMode: {
|
|
preference: 'dark',
|
|
classSuffix: '',
|
|
},
|
|
nitro: {
|
|
prerender: {
|
|
crawlLinks: true,
|
|
routes: ['/', '/robots.txt'],
|
|
ignore: ['/reveal'],
|
|
},
|
|
},
|
|
routeRules: {
|
|
'/**': { cache: { maxAge: 60 * 10 } },
|
|
},
|
|
})
|