forked from xiaojundebug/xiaojun.im
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.js
36 lines (36 loc) · 1.28 KB
/
site.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
module.exports = {
name: 'Xiaojun Zhou',
title: 'Xiaojun Zhou',
description: '欲买桂花同载酒,终不似,少年游。',
avatar: '/avatar.png',
logo: '/logo.svg',
siteUrl: 'https://www.xiaojun.im',
// icon 请在 src/components/Profile.tsx 中修改
links: [
{ name: 'GitHub', link: 'https://github.com/xiaojundebug' },
{ name: 'X', link: 'https://twitter.com/xiaojundebug' },
{ name: '稀土掘金', link: 'https://juejin.cn/user/3386151543772328' },
{ name: 'RSS', link: '/feed.xml' },
],
friends: [
{ name: '赖同学', link: 'https://www.laibh.com' },
{ name: '鯊手', link: 'https://www.cnblogs.com/Scooby' },
{ name: '戴兜', link: 'https://im.daidr.me' },
{ name: 'lufangzhou', link: 'https://zhoufanglu.github.io/vuepressBlog' },
{ name: 'wallleap', link: 'https://myblog.wallleap.cn' },
{ name: 'Song\'s Blog', link: 'https://songxwn.com' },
],
// en | zh-CN
language: 'zh-CN',
// 侧边目录
toc: true,
// 显示上一篇下一篇按钮
adjacentPosts: true,
// 配置文章过时提醒阈值
outdatedPostThresholdDays: 90,
markdown: {
// 统一配置 CodeBlock 是否显示行号,也可以在 frontmatter 中通过 lineNumbers 字段单独设置
lineNumbers: false,
},
backToTopButton: true
}