forked from BearTS/mai-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocusaurus.config.js
103 lines (95 loc) · 2.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
const allDocHomesPaths = [
'/docs/',
];
module.exports = {
title: 'Mai',
tagline: 'A Discord Bot Based Around Anime',
url: 'https://mai-san.ml/',
baseUrl: '/',
onBrokenLinks: 'throw',
favicon: 'https://maisans-maid.github.io/mai.moe/images/main_profile.png',
organizationName: 'Maiden Sen', // Usually your GitHub org/user name.
projectName: 'Mai', // Usually your repo name.
themeConfig: {
announcementBar: {
id: 'support_us', // Any value that will identify this message.
content:
'Coming Soon',
backgroundColor: '#fafbfc', // Defaults to `#fff`.
textColor: '#091E42', // Defaults to `#000`.
isCloseable: true, // Defaults to `true`.
},
navbar: {
hideOnScroll: true,
title: 'Mai',
logo: {
alt: 'Mai',
src: 'https://maisans-maid.github.io/mai.moe/images/main_profile.png',
},
items: [
{
to: 'docs/Getting Started/welcome',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{
to: "About_Me",
activeBasePath: '/About_Me',
label: 'About Me',
position: 'left',
},
{
to: "Submissions",
activeBasePath: '/Submissions',
label: "Submissions",
position: 'left'
},
{
to: "Changelogs",
activeBasePath: '/Changelogs',
label: "Changelogs",
position: 'left'
},
{
href: 'https://discord.com/oauth2/authorize?client_id=702074452317307061&scope=bot&permissions=1043721303',
label: 'Invite Now',
position: 'right',
},
{
href: 'https://github.com/maisans-maid/Mai',
position: 'right',
className: 'header-github-link',
'aria-label': 'GitHub repository',
},
],
},
footer: {
style: 'dark',
copyright: `Copyright © ${new Date().getFullYear()} Mai | Made by Sakurajimai#6742`,
},
},
plugins: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
hashed: true,
indexDocs: true
},
],
],
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
}
},
],
]
};