-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.zh.js
More file actions
308 lines (300 loc) · 9.68 KB
/
docusaurus.config.zh.js
File metadata and controls
308 lines (300 loc) · 9.68 KB
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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
const defaultLocale = "zh";
/** @type {import('@docusaurus/types').Config} */
module.exports = async function createConfigAsync() {
return {
title: "Docusaurus",
tagline: "快速构建优化的网站,专注于你的内容",
favicon: "img/favicon.ico",
// Set the production url of your site here
url: "https://wdk-docs.github.io",
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: "/",
// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: "wdk-docs", // Usually your GitHub org/user name.
projectName: "docusaurus-docs", // Usually your repo name.
trailingSlash: false,
onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",
// 即使不使用内部化,也可以使用该字段设置有用的元数据,如html lang。例如,如果您的网站是中文的,您可能希望将`en`替换为`zh-Hans`。
i18n: {
defaultLocale: "en",
locales: ["en", "zh"],
localeConfigs: {
en: {
htmlLang: "en-GB",
},
zh: {
htmlLang: "zh-CN",
},
},
},
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/",
remarkPlugins: [(await import("remark-math")).default],
rehypePlugins: [(await import("rehype-katex")).default],
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/facebook/docusaurus/tree/main/packages/create-docusaurus/templates/shared/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
// Replace with your project's social card
image: "img/docusaurus-social-card.jpg",
navbar: {
hideOnScroll: true,
title: "文档龙",
logo: {
alt: "",
src: "img/docusaurus.svg",
srcDark: "img/docusaurus_keytar.svg",
width: 32,
height: 32,
},
items: [
{
type: "doc",
position: "left",
docId: "introduction",
label: "文档",
},
{
type: "docSidebar",
position: "left",
sidebarId: "api",
label: "API",
},
{ to: "/blog", label: "博客", position: "left" },
{ to: "showcase", label: "案例", position: "left" },
{
to: "/community/support",
label: "社区",
position: "left",
activeBaseRegex: `/community/`,
},
{
type: "localeDropdown",
position: "left",
},
{
href: "https://github.com/facebook/docusaurus",
label: "GitHub",
position: "right",
},
{
type: "search",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "学习",
items: [
{
label: "介绍",
to: "docs",
},
{
label: "安装",
to: "docs/installation",
},
{
label: "从v1迁移到v2",
to: "docs/migration",
},
],
},
{
title: "社区",
items: [
{
label: "Stack Overflow",
href: "https://stackoverflow.com/questions/tagged/docusaurus",
},
{
label: "特性请求",
to: "/feature-requests",
},
{
label: "Discord",
href: "https://discordapp.com/invite/docusaurus",
},
{
label: "帮助",
to: "/community/support",
},
],
},
{
title: "更多的",
items: [
{
label: "博客",
to: "blog",
},
{
label: "更新日志",
to: "/changelog",
},
{
label: "GitHub",
href: "https://github.com/facebook/docusaurus",
},
{
label: "推特",
href: "https://twitter.com/docusaurus",
},
{
html: `
<a href="https://www.netlify.com" target="_blank" rel="noreferrer noopener" aria-label="Deploys by Netlify">
<img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify" width="114" height="51" />
</a>
`,
},
],
},
{
title: "法律",
// Please don't remove the privacy and terms, it's a legal
// requirement.
items: [
{
label: "隐私",
href: "https://opensource.facebook.com/legal/privacy/",
},
{
label: "条款",
href: "https://opensource.facebook.com/legal/terms/",
},
{
label: "Cookie 策略",
href: "https://opensource.facebook.com/legal/cookie-policy/",
},
],
},
],
logo: {
alt: "Meta开源Logo",
src: "/img/meta_opensource_logo_negative.svg",
href: "https://opensource.fb.com",
},
copyright: `Copyright © ${new Date().getFullYear()} 元平台, Inc. 用Docusaurus建造的。`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
defaultLanguage: "javascript",
},
}),
plugins: [
[
"content-docs",
/** @type {import('@docusaurus/plugin-content-docs').Options} */
({
id: "community",
path: "community",
routeBasePath: "community",
// editUrl: "",
editCurrentVersion: true,
sidebarPath: require.resolve("./sidebarsCommunity.js"),
showLastUpdateAuthor: true,
showLastUpdateTime: true,
}),
],
[
"ideal-image",
/** @type {import('@docusaurus/plugin-ideal-image').PluginOptions} */
({
quality: 70,
max: 1030,
min: 640,
steps: 2,
// Use false to debug, but it incurs huge perf costs
disableInDev: true,
}),
],
// [
// require.resolve("./src/plugins/changelog/index.js"),
// {
// blogTitle: "Docusaurus 更新日志",
// blogDescription: "让自己随时了解每个版本中的新特性",
// blogSidebarCount: "ALL",
// blogSidebarTitle: "更新日志",
// routeBasePath: "/changelog",
// showReadingTime: false,
// postsPerPage: 20,
// archiveBasePath: null,
// authorsMapPath: "authors.json",
// feedOptions: {
// type: "all",
// title: "Docusaurus 更新日志",
// description: "让自己随时了解每个版本中的新特性",
// copyright: `Copyright © ${new Date().getFullYear()} Facebook, Inc.`,
// language: defaultLocale,
// },
// },
// ],
"@docusaurus/theme-mermaid",
[
"client-redirects",
/** @type {import('@docusaurus/plugin-client-redirects').Options} */
({
fromExtensions: ["html"],
createRedirects(routePath) {
// Redirect to /docs from /docs/introduction (now docs root doc)
if (routePath === "/docs" || routePath === "/docs/") {
return [`${routePath}/introduction`];
}
return [];
},
redirects: [
{
from: ["/docs/support", "/docs/next/support"],
to: "/community/support",
},
{
from: ["/docs/team", "/docs/next/team"],
to: "/community/team",
},
{
from: ["/docs/resources", "/docs/next/resources"],
to: "/community/resources",
},
// ...dogfoodingRedirects,
],
}),
],
(await import("./src-zh/plugins/featureRequests/FeatureRequestsPlugin.mjs")).default,
],
markdown: {
mermaid: true,
},
// themes: ["@docusaurus/theme-mermaid"],
};
};