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
|
module.exports = {
title: 'CCJEE Journal',
description: '关注学习过程 关注分享',
head: [
['link', { rel: 'icon', href: '/logo.webp' }]
],
themeConfig: {
nav: [
{ text: '首页', link: '/' },
{ text: '关于', link: '/about.html' },
{ text: 'Windows', link: '/software.html' },
{
text: '项目',
items: [
{
text: '数据分析',
items: [
{text: '数据化管理(1)', link: '/project/data/day1.html'},
{text: '数据化管理(2)', link: '/project/data/day2.html'},
{text: '自学数据分析', link: '/project/data/guide.html'}
]
},
{
text: '读书笔记',
items: [
{text: '美团的成长与进化逻辑', link: '/project/read/meituan.html'}
]
},
{
text: 'Obsidian笔记',
items: [
{text: '我的Obsidian使用方法', link: '/project/obsidian/obsidian.html'},
{text: 'Markdown语法', link: '/project/obsidian/markdown.html'},
{text: 'Obsidian个人知识管理', link: '/project/obsidian/个人知识管理.html'}
]
},
{
text: '生活',
items: [
{text: '记录锅具选择、使用', link: '/project/life/锅具.html'}
]
}
]
}
]
},
plugins: [
[
'@vuepress/plugin-search',
{
placeholder: '搜索',
},
],
['@vuepress/back-to-top'],
['@vuepress/plugin-pwa'],
],
}
|