forked from nuxt-themes/docus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.config.ts
48 lines (39 loc) · 864 Bytes
/
app.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
export default defineAppConfig({
docus: {
title: 'Docus',
description: 'The best place to start your documentation.',
url: 'https://docus.dev',
image: 'https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png',
socials: {},
layout: 'default',
header: {
title: '',
logo: false,
showLinkIcon: false,
fluid: false,
exclude: []
},
aside: {
level: 0,
collapsed: false,
exclude: []
},
footer: {
credits: {
icon: 'IconDocus',
text: 'Powered by Docus',
href: 'https://docus.dev'
},
textLinks: [],
iconLinks: [],
fluid: false
},
github: {
dir: undefined,
branch: undefined,
repo: undefined,
owner: undefined,
edit: false
},
}
})