All checks were successful
ci / ci (22, debian-trixie) (push) Successful in 36s
61 lines
1,007 B
TypeScript
61 lines
1,007 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
|
|
modules: [
|
|
'@nuxt/eslint',
|
|
'@nuxt/ui',
|
|
'@nuxt/icon'
|
|
],
|
|
|
|
devtools: {
|
|
enabled: true
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
link: [
|
|
{
|
|
rel: 'preconnect',
|
|
href: 'https://fonts.googleapis.com'
|
|
},
|
|
{
|
|
rel: 'preconnect',
|
|
href: 'https://fonts.gstatic.com',
|
|
crossorigin: ''
|
|
},
|
|
{
|
|
rel: 'stylesheet',
|
|
href: 'https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap'
|
|
}
|
|
]
|
|
}
|
|
},
|
|
|
|
css: ['~/assets/css/main.css'],
|
|
|
|
colorMode: {
|
|
preference: 'dark',
|
|
fallback: 'dark',
|
|
storageKey: 'nuxt-color-mode'
|
|
},
|
|
|
|
srcDir: 'app/',
|
|
|
|
routeRules: {
|
|
'/': { prerender: true }
|
|
},
|
|
|
|
compatibilityDate: '2025-01-15',
|
|
nitro: {
|
|
preset: 'bun'
|
|
},
|
|
|
|
eslint: {
|
|
config: {
|
|
stylistic: {
|
|
commaDangle: 'never',
|
|
braceStyle: '1tbs'
|
|
}
|
|
}
|
|
}
|
|
})
|