-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.js
36 lines (29 loc) · 982 Bytes
/
config.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
// 展示于 header 横幅的默认标题
const bannerDefaultTitle = 'you know znm'
// 站点名, 用于页面 title
const siteName = 'youknowznm'
// github 用户名, 用于获取仓库列表
const githubUsername = 'youknowznm'
// 社交相关, 在 footer 展示, 按需增减
const email = '[email protected]'
const zhihu = 'https://www.zhihu.com/people/youkonwznm'
// 备案号和链接
const beianRecord = '京ICP备17065562号-3'
const beianLink = 'https://beian.miit.gov.cn'
// 是否在 header 导航展示简历链接
// 如不展示, 则需手动前往 `/about` 查看
const showResumeOnHeaderNav = false
// 笔记 markdown 代码的语言列表, 用以优化 hljs 的体积
const markdownCodeLanguages = ['javascript', 'scss', 'css', 'bash']
module.exports = {
bannerDefaultTitle,
siteName,
githubUsername,
email,
zhihu,
github: `https://github.com/${githubUsername}`,
showResumeOnHeaderNav,
markdownCodeLanguages,
beianRecord,
beianLink,
}