-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
58 lines (58 loc) · 1.42 KB
/
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
49
50
51
52
53
54
55
56
57
58
export default defineAppConfig({
shadcnDocs: {
site: {
name: 'plugify',
description: 'A Modern C++ Plugin and Package Manager with Multi-Language Support. Customizable. Compatible. Open Source.',
ogImage: '/hero.png',
ogImageComponent: 'ShadcnDocs',
ogImageColor: 'light',
},
theme: {
customizable: true,
color: 'plugify',
radius: 0.5,
},
header: {
title: 'shadcn-docs-starter',
showTitle: false,
darkModeToggle: true,
logo: {
light: '/plg-logo-text.svg',
dark: '/plg-logo-text-white.svg',
},
links: [{
icon: 'simple-icons:discord',
to: 'https://discord.gg/untrustedmodders',
target: '_blank',
}, {
icon: 'simple-icons:github',
to: 'https://github.com/untrustedmodders/',
target: '_blank',
}],
},
aside: {
useLevel: true,
collapse: false,
},
main: {
breadCrumb: true,
showTitle: true,
},
footer: {
credits: `Copyright © 2023-${new Date().getFullYear()} Plugify - MIT License`,
links: [{
icon: 'simple-icons:discord',
to: 'https://discord.gg/untrustedmodders',
target: '_blank',
}, {
icon: 'simple-icons:github',
to: 'https://github.com/untrustedmodders',
target: '_blank',
}],
},
search: {
enable: true,
inAside: false,
}
}
});