docudjeex/app.config.ts
2024-11-11 14:13:43 +00:00

50 lines
1.1 KiB
TypeScript

// https://github.com/nuxt-themes/docus/blob/main/nuxt.schema.ts
export default defineAppConfig({
colorMode: {
preference: 'dark',
fallback:'dark',
},
docus: {
title: 'Docudjeex',
description: 'La doc de mes expériences',
image: 'https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png',
socials: {
Gitea: {
label: 'Gitea',
icon: 'cib:gitea',
href: 'https://git.djeex.fr/Djeex/docudjeex',
},
Discord: {
label: 'Discord',
icon: 'cbi:discord',
href: 'https://discord.gg/jvhardware',
},
},
github: {
baseUrl:'https://git.djeex.fr',
dir: '.starters/default/content',
branch: 'main',
repo: 'docudjeex',
owner: 'Djeex',
edit: true
},
aside: {
level: 0,
collapsed: false,
exclude: []
},
main: {
padded: true,
fluid: true
},
header: {
logo: true,
showLinkIcon: true,
exclude: [],
fluid: true
}
}
})