mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-06-24 10:44:21 +00:00
18 lines
No EOL
364 B
TypeScript
18 lines
No EOL
364 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-05-15',
|
|
devtools: { enabled: true },
|
|
target: 'static',
|
|
// make static output
|
|
ssr: false,
|
|
nitro: {
|
|
preset: 'static'
|
|
},
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@nuxt/eslint',
|
|
'@nuxt/fonts',
|
|
'@nuxt/icon',
|
|
'@nuxt/image'
|
|
]
|
|
}) |