-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpagic.config.tsx
More file actions
48 lines (48 loc) · 944 Bytes
/
pagic.config.tsx
File metadata and controls
48 lines (48 loc) · 944 Bytes
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 {
srcDir: 'src',
theme: 'blog',
plugins: ['blog'],
title: '流浪小猫的博客',
description: '欢迎来到我的博客,这里搜集了我的技术文章和生活感悟,欢迎一起交流成长。',
github: 'https://github.com/xcatliu/blog',
nav: [
{
text: '首页',
link: '/',
icon: 'czs-home-l'
},
{
text: '分类',
link: '/categories/',
icon: 'czs-category-l'
},
{
text: '标签',
link: '/tags/',
icon: 'czs-tag-l'
},
{
text: '关于',
link: '/about/',
icon: 'czs-about-l'
},
{
text: '归档',
link: '/archives/',
icon: 'czs-box-l'
},
{
text: '友情链接',
link: '/links/',
icon: 'czs-link-l'
}
],
blog: {
root: '/posts/',
social: {
github: 'xcatliu/blog',
email: '[email protected]',
twitter: 'xcatliu',
}
}
};