mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-21 13:06:11 +01:00
Implement everything
This commit is contained in:
parent
d966dd9562
commit
30d747e046
26 changed files with 1069 additions and 6 deletions
|
|
@ -1,6 +1,5 @@
|
|||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2024-11-01',
|
||||
devtools: { enabled: true },
|
||||
|
||||
modules: [
|
||||
|
|
@ -12,5 +11,29 @@ export default defineNuxtConfig({
|
|||
'@nuxt/scripts',
|
||||
'@nuxt/test-utils',
|
||||
'@nuxt/ui'
|
||||
]
|
||||
],
|
||||
|
||||
css: [
|
||||
"~/assets/main.css"
|
||||
],
|
||||
|
||||
colorMode: {
|
||||
preference: 'system',
|
||||
fallback: 'dark',
|
||||
classSuffix: '',
|
||||
},
|
||||
|
||||
app: {
|
||||
head: {
|
||||
title: 'MarcUs7i.Net',
|
||||
meta: [
|
||||
{ name: 'description', content: 'The official site for MarcUs7i.Net' }
|
||||
],
|
||||
link: [
|
||||
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
compatibilityDate: '2025-03-22',
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue