-
Notifications
You must be signed in to change notification settings - Fork 12
/
docusaurus.config.js
257 lines (246 loc) · 8.56 KB
/
docusaurus.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
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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
i18n: {
defaultLocale: "zh-CN",
locales: ["zh-CN", "en"],
},
title: "Yak Program Language",
tagline: "Yak 是一门 Web 安全研发领域垂直语言",
url: "https://yaklang.com",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "yaklang", // Usually your GitHub org/user name.
projectName: "yak-project-main-page", // Usually your repo name.
themeConfig: {
colorMode: {
// "light" | "dark"
defaultMode: "light",
// Hides the switch in the navbar
// Useful if you want to support a single color mode
disableSwitch: true,
// Should we use the prefers-color-scheme media-query,
// using user system preferences, instead of the hardcoded defaultMode
respectPrefersColorScheme: false,
// Dark/light switch icon options
switchConfig: {
// Icon for the switch while in dark mode
darkIcon: "🌙",
// CSS to apply to dark icon,
// React inline style object
// see https://reactjs.org/docs/dom-elements.html#style
darkIconStyle: {
marginLeft: "2px",
},
// Unicode icons such as '\u2600' will work
// Unicode with 5 chars require brackets: '\u{1F602}'
lightIcon: "🌞",
lightIconStyle: {
marginLeft: "1px",
},
},
},
navbar: {
title: "",
logo: {
alt: "My Site Logo",
src: "img/logo.png",
},
items: [
{
// dropdown类型现在只能跳转网站内的页面,不能跳转外链,需要跳转外链的请修改[src/theme/NavbarItem/DefaultNavbarItem.js]文件内的dropdown逻辑
type: "dropdown",
position: "left",
label: "官方文档",
items: [
{
// type: "doc",
// docId: "intro",
label: "Yak 语言文档",
href: "/docs/intro",
},
{
// {
// type: "doc",
// docId: "intro",
// docsPluginId: "products",
label: "Yakit(YAK IDE) 文档与手册 ",
href: "/products/intro",
},
],
},
{
href: "/articles/intro",
label: "Yak 技术博客",
position: "left",
},
// {
// position: "left",
// to: "/enterpriseCollaboration",
// activeBasePath: "pages",
// label: "企业合作",
// },
{
position: "left",
href: "https://ssa.to",
label: "静态代码分析技术",
},
{
href: "/Yaklab/yaklab",
label: "YakLab 实战手册",
position: "left",
},
{
position: "left",
to: "/team",
activeBasePath: "pages",
label: "关于我们",
},
{
position: "left",
to: "/cooperativePartner",
activeBasePath: "pages",
label: "合作伙伴",
},
// {
// position: "left",
// to: "/team",
// activeBasePath: "pages",
// label: "Yak 社区",
// },
// {
// position: "left",
// type: "doc",
// docId: "intro",
// docsPluginId: "team",
// label: "社区与团队",
// },
// {to: 'blog', label: 'Blog', position: 'left'},
// {
// type: "docsVersionDropdown",
// position: "right",
// },
{
href: "https://yaklang.oss-cn-beijing.aliyuncs.com/yakit-technical-white-paper.pdf",
label: "下载白皮书",
position: "right",
},
{
href: "https://github.com/yaklang",
label: "Github",
position: "right",
},
],
},
footer: {
style: "light",
logo: {
alt: "My Site Logo",
src: "img/logo.png",
href: "/",
},
links: [
{
title: "Docs",
items: [
{
label: "官方文档",
href: "/docs/intro",
},
],
},
{
title: "Community",
items: [
{
label: "关于我们",
href: "/team",
},
],
},
],
copyright: `<a class="footer-a" href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank">Copyright © ${new Date().getFullYear()} for Yak Project. 京ICP备17047700号-3</a>`,
},
algolia: {
// The application ID provided by Algolia
appId: "KU1F47O3Q6",
// Public API key: it is safe to commit it
apiKey: "84508cc662df9bef2f7e8bab1a3508bb",
indexName: "yaklang",
// Optional: see doc section below
contextualSearch: false,
// Optional: Algolia search parameters
searchParameters: {
facetFilters: ["language:zh-CN", ["filter1", "filter2"], "filter3"],
},
},
prism: {
theme: require("prism-react-renderer/themes/github"),
},
},
plugins: [
"docusaurus-plugin-sass",
// [
// "@docusaurus/plugin-content-docs",
// {
// id: "team",
// path: "team",
// routeBasePath: "team",
// sidebarPath: require.resolve("./sidebarsTeam.js"),
// // ... other options
// },
// ],
[
"@docusaurus/plugin-content-docs",
{
id: "products",
path: "products",
routeBasePath: "products",
sidebarPath: require.resolve("./sidebarsProducts.js"),
// ... other options
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "Yaklab",
path: "Yaklab",
routeBasePath: "Yaklab",
sidebarPath: require.resolve("./sidebarsProducts.js"),
// ... other options
},
],
[
"@docusaurus/plugin-content-docs",
{
id: "articles",
path: "articles",
routeBasePath: "articles",
sidebarPath: require.resolve("./sidebarsProducts.js"),
// ... other options
},
],
],
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
// Please change this to your repo.
editUrl: "https://github.com/yaklang/",
},
// blog: {
// showReadingTime: true,
// // Please change this to your repo.
// editUrl:
// 'https://github.com/yaklang/',
// },
theme: {
customCss: require.resolve("./src/css/custom.scss"),
},
},
],
],
};