-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.config.ts
43 lines (42 loc) · 911 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
export default defineAppConfig({
docus: {
title: 'Shift to Modern',
description: 'The only guide you need to let your teammates adopt modern work flows and tools.',
url: 'https://shift2modern.dev',
layout: 'default',
socials: {
github: 'BPCClub/Shift2Modern',
},
github: {
repo: 'Shift2Modern',
owner: 'BPCClub',
branch: 'main',
dir: 'content',
edit: true,
},
aside: {
level: 0,
exclude: []
},
header: {
logo: false,
title: 'Shift to Modern',
showLinkIcon: true,
exclude: [],
},
footer: {
credits: {
"icon": "IconDocus",
"text": "Powered by Docus",
"href": "https://docus.dev"
},
textLinks: [
{
text: 'BPCC Present',
href: 'https://github.com/BPCClub',
target: '_blank',
}
],
},
}
})