-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.config.ts
67 lines (67 loc) · 1.32 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
59
60
61
62
63
64
65
66
67
export default defineAppConfig({
ui: {
primary: 'red',
gray: 'slate',
footer: {
bottom: {
left: 'text-sm text-gray-500 dark:text-gray-400',
wrapper: 'border-t border-gray-200 dark:border-gray-800'
}
}
},
seo: {
siteName: 'Lionad\'s Blog and KnowledgeBase',
},
header: {
logo: {
alt: '',
light: '',
dark: ''
},
search: true,
links: [
{
label: 'Posts',
to: '/articles',
},
{
label: 'Gists',
to: '/gists',
},
{
label: 'Links',
to: '/links',
},
],
colorMode: true,
},
footer: {
credits: 'Copyright © 2024 Lionad - CC-BY-NC-CD-4.0',
colorMode: true,
links: [{
icon: 'i-simple-icons-github',
to: 'https://github.com/Lionad-Morotar',
target: '_blank',
'aria-label': 'Lionad-Morotar on GitHub'
}, {
icon: 'i-simple-icons-juejin',
to: 'https://juejin.cn/user/289926800227694/posts',
target: '_blank',
'aria-label': 'Lionad-Morotar on JueJin'
}]
},
toc: {
title: 'Table of Contents',
bottom: {
title: 'More',
links: [
{
icon: 'i-heroicons-book-open',
label: 'RSS',
to: 'feed.xml',
target: '_blank',
}
]
}
}
})