-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.config.ts
48 lines (48 loc) · 1.09 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
export default defineAppConfig({
ui: {
primary: 'yellow',
gray: 'slate',
footer: {
bottom: {
center: 'text-sm text-gray-500 dark:text-gray-400',
wrapper: 'border-t border-gray-200 dark:border-gray-800'
}
}
},
header: {
search: true,
colorMode: true,
links: [{
icon: 'i-simple-icons-gitea',
to: 'https://gitea.keyboarddabbler.com/Production/simplifyingHVAC.com',
target: '_blank',
'aria-label': 'Repo on Gitea'
}]
},
footer: {
colorMode: false,
},
toc: {
title: 'Table of Contents',
bottom: {
title: 'Community',
edit: '',
links: [{
icon: 'i-heroicons-star',
label: 'Star on Gitea',
to: '',
target: '_blank',
}, {
icon: 'i-heroicons-book-open',
label: 'docs',
to: '',
target: '_blank',
}, {
icon: 'i-simple-icons-nuxtdotjs',
label: 'license',
to: '',
target: '_blank',
}]
}
}
})