This repository has been archived by the owner on Mar 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 146
/
docusaurus.config.js
116 lines (113 loc) · 2.73 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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
const path = require('path');
module.exports = {
title: 'Crab Docs',
tagline: 'The tagline of my site',
url: 'https://docs.crab.network.l2me.com/',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.svg',
organizationName: 'darwinia-network', // Usually your GitHub org/user name.
projectName: 'crab-docs', // Usually your repo name.
themeConfig: {
prism: {
additionalLanguages: ['solidity'],
},
colorMode: {
// disableSwitch: true,
defaultMode: 'light',
},
navbar: {
title: 'Crab Network',
logo: {
alt: 'My Site Logo',
src: 'img/favicon.svg',
},
items: [
// {to: 'blog', label: 'Blog', position: 'left'},
{
href: 'https://github.com/darwinia-network/darwinia/tree/master/runtime/crab',
label: 'GitHub',
position: 'right',
},
{
href: 'https://darwinia.network/Darwinia_Genepaper_EN.pdf',
label: 'WhitePaper',
position: 'right',
},
{
type: 'localeDropdown',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Community',
items: [
{
label: 'Medium',
href: 'https://medium.com/@DarwiniaNetwork',
},
{
label: 'Twitter',
href: 'https://twitter.com/DarwiniaNetwork',
},
{
label: 'GitHub',
href: 'https://github.com/darwinia-network',
},
],
},
{
title: 'More',
items: [
{
label: 'Darwinia',
href: 'https://darwinia.network/',
},
{
label: 'Kusama',
href: 'https://kusama.network/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Crab Network. Built with Docusaurus.`,
},
},
plugins: [
'docusaurus-plugin-sass',
path.resolve(__dirname, './src/plugins/seo'),
],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/darwinia-network/crab-docs/edit/main/',
routeBasePath: '/',
},
theme: {
customCss: require.resolve('./src/css/custom.scss'),
},
},
],
],
i18n: {
defaultLocale: 'en',
locales: ['en'],
localeConfigs: {
en: {
label: "English",
},
// 'zh-CN': {
// label: "中文",
// }
}
}
};