-
Notifications
You must be signed in to change notification settings - Fork 48
/
rspress.config.readme.ts
228 lines (225 loc) · 6.9 KB
/
rspress.config.readme.ts
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import * as path from 'path';
import { defineConfig } from 'rspress/config';
export default defineConfig({
root: path.join(__dirname, 'docs'),
// root: 'docs',
title: '若川的博客',
description: '若川的博客',
// lang: 'zh',
// icon: '/favicon.ico',
// logo: {
// light: '/rspress-light-logo.png',
// dark: '/rspress-dark-logo.png',
// },
route: {
exclude: ['jquery', 'mini-webpack', '**/images/**/*', '**/**/README.md'],
// exclude: ['**/fragments/**'],
// extensions: ['.jsx', '.md', '.mdx'],
cleanUrls: true,
},
themeConfig: {
enableContentAnimation: true,
footer: {
message: '© 2024 若川',
},
hideNavbar: 'auto',
socialLinks: [
{
icon: 'github',
mode: 'link',
content: 'https://github.com/web-infra-dev/rspress',
},
{
icon: 'discord',
mode: 'link',
content: 'https://discord.gg/mkVw5zPAtf',
},
{
icon: 'x',
mode: 'link',
content: 'https://x.com/rspack_dev',
},
],
// locales: [
// {
// lang: 'zh',
// label: '简体中文',
// editLink: {
// docRepoBaseUrl:
// 'https://github.com/web-infra-dev/rspress/tree/main/packages/document/docs',
// text: '📝 在 GitHub 上编辑此页',
// },
// prevPageText: '上一篇',
// nextPageText: '下一篇',
// outlineTitle: '目录',
// searchPlaceholderText: '搜索',
// searchNoResultsText: '未搜索到相关结果',
// searchSuggestedQueryText: '可更换不同的关键字后重试',
// },
// {
// lang: 'en',
// label: 'English',
// editLink: {
// docRepoBaseUrl:
// 'https://github.com/web-infra-dev/rspress/tree/main/packages/document/docs',
// text: '📝 Edit this page on GitHub',
// },
// searchPlaceholderText: 'Search',
// },
// ],
sidebar: {
'/': [
{
text: '目录', // 必要的
// prefix: '/README.md', // 可选的, 应该是一个绝对路径
// collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
// '../../README.md',
],
},
{
text: 'taro源码揭秘', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
// collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/taro/cli-init/README.md',
'/taro/cli-plugins/README.md',
'/taro/cli-init-2/README.md',
'/taro/cli-build/README.md',
'/taro/events/README.md',
'/taro/native-apis/README.md',
],
},
{
text: 'vant组件库源码', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
// collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/vant/highlight/README.md',
'/vant/lazyload/README.md',
'/vant/count-down/README.md',
'/vant/list/README.md',
'/vant/loading/README.md',
'/vant/dark-theme/README.md',
],
},
{
text: '学习源码系列', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/vue-mini-analysis/README.md',
'/axios-build/README.md',
'/open-in-github/README.md',
'/react-use/README.md',
'/vue-debugger/README.md',
'/vant-weapp-stepper/README.md',
'/create-vite/README.md',
'/mini-ci/README.md',
'/dotenv/README.md',
'/delay/README.md',
'/install-pkg/README.md',
'/read-pkg/README.md',
'/only-allow/README.md',
'/element-new/README.md',
'/debug/README.md',
'/promisify/README.md',
'/open/README.md',
'/vue-utils/README.md',
'/ni/README.md',
'/vue-dev-server/README.md',
'/create-vue/README.md',
'/vue-this/README.md',
'/koa-compose/README.md',
'/vue-next-release/README.md',
'/vue-next-utils/README.md',
'/vue-devtools/README.md',
'/vuex-this/README.md',
'/vuex4/README.md',
'/open-in-editor/README.md',
'/redux/README.md',
'/koa/README.md',
'/axios/README.md',
'/vuex/README.md',
'/sentry/README.md',
'/lodash/README.md',
'/underscore/README.md',
// '/jquery/README.md',
],
},
{
text: '面试官问系列', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/js-extend/README.md',
'/js-this/README.md',
'/js-implement-call-apply/README.md',
'/js-implement-bind/README.md',
'/js-implement-new/README.md',
],
},
{
text: '历史文章', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/puppeteer-create-pdf-and-merge/README.md',
'/vue-cli-2-webpack/README.md',
'/oh-my-zsh/README.md',
'/20180421-youzan-front-end-tech-open-day/README.md',
'/vue-2-qrcode/README.md',
'/js-object-api/README.md',
'/js-book/README.md',
],
},
{
text: '杂文', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/goal/README.md',
'/20190612-after-3-year-work/README.md',
'/20170602-After-a-year-s-work-I-had-some-insights/README.md',
'/20160907-How-do-I-set-foot-on-the-front-end-of-the-road/README.md',
],
},
{
text: '曾经写的"诗词"', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
// collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: ['/poetry/2012-2016/README.md', '/poetry/2013/'],
},
{
text: '年度总结', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: [
'/annual-summary/2021/README.md',
'/annual-summary/2020/README.md',
'/annual-summary/2019/README.md',
'/annual-summary/2018/README.md',
'/annual-summary/2017/README.md',
'/annual-summary/2016/README.md',
],
},
{
text: '关于', // 必要的
// path: '/about/README.md', // 可选的, 应该是一个绝对路径
collapsible: true, // 可选的, 默认值是 true,
// sidebarDepth: 2, // 可选的, 默认值是 1
items: ['/about/README.md'],
},
],
},
},
});