-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathdocusaurus.config.js
194 lines (188 loc) · 6.45 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
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const path = require('path')
const organizationName = 'chaosblade-io' // Usually your GitHub org/user name.
const projectName = 'chaosblade-website' // Usually your repo name.
const branch = 'master'
const repoUrl = `https://github.com/${organizationName}/${projectName}`
const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'ChaosBlade',
tagline: 'Help companies solve the high availability problems in the process of migrating to cloud-native systems through chaos engineering',
url: 'https://chaosblade.io',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
favicon: 'img/favicon/favicon.ico',
organizationName,
projectName,
customFields: {
repoUrl
},
i18n: {
defaultLocale: 'zh',
locales: ['en', 'zh'],
localeConfigs: {
en: {
label: 'English',
},
zh: {
label: '简体中文',
},
},
},
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
image: 'img/cb-logo.png',
metadata: [{ name: 'twitter:card', content: 'summary' }],
docs: {
sidebar: {
autoCollapseCategories: true,
},
},
colorMode: {
defaultMode: 'light',
disableSwitch: false,
respectPrefersColorScheme: true,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
additionalLanguages: ['java','go'],
},
algolia: {
appId: 'AJZLJ48ZRO',
apiKey: '778c20275bbb7d909cf22e4663360e39',
indexName: 'chaosblade',
},
announcementBar: {
id: 'supportus',
content:
`⭐️ If you like ChaosBlade, give it a star on <a target="_blank" rel="noopener noreferrer" href="https://github.com/${organizationName}/chaosblade">GitHub</a>! ⭐️`,
},
navbar: {
title: 'ChaosBlade',
logo: {
alt: 'ChaosBlade',
src: 'img/cb-head.png',
srcDark: 'img/cb-head.png',
},
items: [
{ type: 'docsVersionDropdown' },
{
label: 'Documentation',
position: 'left',
activeBasePath: 'docs',
to: 'docs',
},
{
to: 'blog',
label: 'Blog',
position: 'left'
},
{
href: 'https://github.com/chaosblade-io/chaosblade',
className: 'header-githab-link',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [{
title: 'Docs',
items: [{
label: 'About ChaosBlade',
to: '/docs',
},{
label: 'Contribute documents',
to: '/docs/community',
}],
}, {
title: 'Community',
items: [{
label: 'Gitter',
href: `https://gitter.im/chaosblade-io/community`,
}, {
label: 'Twitter',
href: `https://twitter.com/chaosblade.io`,
}, {
label: 'Slack',
href: 'https://join.slack.com/t/chaosblade-io/shared_invite/zt-f0d3r3f4-TDK13Wr3QRUrAhems28p1w'
}, {
label: 'DingTalk(23177705)',
href: '/',
}],
}, {
title: 'More',
items: [{
html:
'<a href="https://www.netlify.com"><img src="https://www.netlify.com/img/global/badges/netlify-color-accent.svg" alt="Deploys by Netlify" /></a>',
}],
},
],
logo: {
alt: 'CNCF',
src: '/img/cncf-white.svg',
href: 'https://cncf.io/'
},
copyright: `© ${new Date().getFullYear()} The ChaosBlade Authors. All rights reserved. <br />
The Linux Foundation has registered trademarks and uses trademarks.
For a list of trademarks of The Linux Foundation,
please see our <a href="https://www.linuxfoundation.org/trademark-usage/"> Trademark Usage</a> page.`,
},
}),
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl: `${repoUrl}/edit/${branch}/`,
remarkPlugins: [
[require('@docusaurus/remark-plugin-npm2yarn'), { sync: true }],
],
},
blog: {
blogSidebarTitle: '全部博文',
blogSidebarCount: 'ALL',
showReadingTime: true,
// postsPerPage: 3,
postsPerPage: 'ALL',
// Please change this to your repo.
editUrl: `${repoUrl}/edit/${branch}/`,
authorsMapPath: 'authors.yml',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
pages: {
remarkPlugins: [require('@docusaurus/remark-plugin-npm2yarn')],
},
gtag: {
trackingID: 'G-FY5W27B8XH',
anonymizeIP: true,
},
}),
],
],
stylesheets: [
'//g.alicdn.com/mamba/assets/0.0.19/mse-arc-ui.min.css',
'https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600&display=block',
'https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;600&display=block'
],
scripts: [
'//g.alicdn.com/mamba/assets/0.0.19/mse-arc-ui.min.js',
'https://buttons.github.io/buttons.js'
],
};
module.exports = config;