mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-21 13:06:11 +01:00
53 lines
905 B
TypeScript
53 lines
905 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
|
|
modules: [
|
|
'@nuxt/content',
|
|
'@nuxt/eslint',
|
|
'@nuxt/fonts',
|
|
'@nuxt/icon',
|
|
'@nuxt/image',
|
|
'@nuxt/scripts',
|
|
'@nuxt/test-utils',
|
|
'@nuxt/ui'
|
|
],
|
|
|
|
css: [
|
|
"~/assets/main.css"
|
|
],
|
|
|
|
colorMode: {
|
|
preference: 'system',
|
|
fallback: 'dark',
|
|
classSuffix: '',
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
title: 'Kizuren',
|
|
meta: [
|
|
{ name: 'description', content: 'The official site for Kizuren.dev' }
|
|
],
|
|
link: [
|
|
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
|
|
]
|
|
}
|
|
},
|
|
|
|
ui: {
|
|
theme: {
|
|
colors: [
|
|
'primary',
|
|
'pixelgreen',
|
|
'secondary',
|
|
'info',
|
|
'success',
|
|
'warning',
|
|
'error'
|
|
]
|
|
}
|
|
},
|
|
|
|
compatibilityDate: '2025-05-29',
|
|
})
|