This repository has been archived by the owner on Jun 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docusaurus.config.js
105 lines (105 loc) · 2.57 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
module.exports = {
title: 'Graia Document',
tagline: 'The Document of Graia',
url: 'http://graiax.xyz/',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.ico',
organizationName: 'facebook', // Usually your GitHub org/user name.
projectName: 'docusaurus', // Usually your repo name.
themeConfig: {
navbar: {
title: 'Graiax',
logo: {
alt: 'Graiax Logo',
src: 'img/logo.svg',
},
items: [
{
to: 'docs/',
activeBasePath: 'docs',
label: 'Docs',
position: 'left',
},
{
href: 'https://github.com/GraiaProject/Application',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: '入门教程',
to: 'docs/',
},
{
label: 'API文档',
href: 'https://graiaproject.github.io/Application/',
},
],
},
{
title: '社区 - Community',
items: [
{
label: 'QQ 讨论群',
href: 'https://jq.qq.com/?_wv=1027&k=VXp6plBD',
},
],
},
{
title: 'More',
items: [
{
label: '加入我们',
href: 'https://github.com/zzzzz167/graia-document/blob/main/join_us.md',
},
{
label: '查看生成日志',
href: 'https://graiax.xyz/_logs'
}
],
},
{
title: '友情链接',
items: [
{
label: 'YiriMirai',
href: 'https://yiri-mirai.vercel.app'
}
]
}
],
copyright: `Copyright © ${new Date().getFullYear()} Graia Project.由 Docusaurus Ⅱ 强力驱动.`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl:
'https://github.com/facebook/docusaurus/edit/master/website/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
'https://github.com/facebook/docusaurus/edit/master/website/blog/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
},
],
],
};