29 lines
518 B
TypeScript
Executable File
29 lines
518 B
TypeScript
Executable File
export default defineNuxtConfig({
|
|
// https://github.com/nuxt-themes/docus
|
|
css: ['~/assets/css/extra.css'],
|
|
extends: ['@nuxt-themes/docus'],
|
|
devtools: { enabled: true },
|
|
colorMode: {
|
|
preference: 'dark',
|
|
fallback:'dark',
|
|
},
|
|
content: {
|
|
highlight: {
|
|
langs: [
|
|
'console',
|
|
'nginx',
|
|
]
|
|
}
|
|
},
|
|
|
|
mdc: {
|
|
highlight: {
|
|
theme: 'github-dark',
|
|
langs: ['ts','html','console','nginx'],
|
|
wrapperStyle: true
|
|
}
|
|
},
|
|
|
|
compatibilityDate: '2024-10-24'
|
|
})
|