-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcustom.js
79 lines (72 loc) · 1.64 KB
/
custom.js
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
68
69
70
71
72
73
74
75
76
77
78
79
/**
* @file: custom config
*/
let mainConfig = {
vssueConfig: {
owner: "Yidadaa",
repo: "Issue-Blog-With-Github-Action",
clientId: "2783a4b752f56c0ed912",
clientSecret: "c8d9116fcade901567ff34aa1fb09216731683a3"
},
repoConfig: {
owner: "Yidadaa",
repo: "Issue-Blog-With-Github-Action",
pushBranch: "master",
email: "[email protected]",
filterUsers: []
},
title: "YiFei Zhang's Blog",
description: "在这里了解我的一切,对编程的热爱永不停歇。",
customDomain: "",
base: "/Issue-Blog-With-Github-Action/",
slogan: {
main: "有逻辑的灵魂,",
sub: "造就有温度的编码。"
},
themeConfig: {
nav: [
{
name: "首页",
link: "/Issue-Blog-With-Github-Action"
},
{
name: "Github",
link: "https://github.com/Yidadaa"
},
{
name: "CV",
link: "/Issue-Blog-With-Github-Action/cv.html"
}
],
headTitle: ["暮春早夏的月亮", "原是情人的月亮,不比秋冬是诗人的月亮"],
friendLinks: [
{
name: "watercow",
link: "https://github.com/watercow/watercow.github.io/issues"
},
{
name: "ycjgg",
link: "https://ycjgg.github.io"
}
],
extraFooters: [
{
title: "",
text: "@ 蜀 ICP 备 19000509 号 - 1",
link: "https://beian.miit.gov.cn/"
}
],
pageCount: true
},
head: [
[
"link",
{
rel: "icon",
type: "image/png",
href: "https://avatars2.githubusercontent.com/u/16968934?s=460&v=4"
}
]
]
}
module.exports = mainConfig