-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
53 lines (51 loc) · 1.35 KB
/
Copy pathdocusaurus.config.js
File metadata and controls
53 lines (51 loc) · 1.35 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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
module.exports = {
title: 'Crust Cloud Documentation',
tagline: 'Store in IPFS W3Bucket, Decentralized, Guaranteed & Alive.',
url: 'https://docs.cloud3.cc',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/fav.png',
organizationName: 'decooio', // Usually your GitHub org/user name.
projectName: 'cloud3-docs', // Usually your repo name.
themeConfig: {
prism: {
additionalLanguages: ['java'],
},
navbar: {
title: '',
logo: {
alt: 'Crust Cloud Logo',
src: 'img/logo.svg',
},
},
colorMode: {
defaultMode: 'light',
disableSwitch: true,
respectPrefersColorScheme: false,
}
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
// Please change this to your repo.
// editUrl: 'https://github.com/decooio/cloud3-docs/edit/main/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
// editUrl:
// 'https://github.com/decooio/cloud3-docs/edit/main/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};