-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdocusaurus.config.js
111 lines (111 loc) · 2.66 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
module.exports = {
title: "RMUIF",
tagline:
"Supercharged version of Create React App with all the bells and whistles.",
url: "https://docs.rmuif.com",
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "rmuif",
projectName: "docs",
themeConfig: {
navbar: {
logo: {
alt: "Logo",
src: "img/logo.svg",
srcDark: "img/logo-white.svg",
},
links: [
{
label: "Discord",
href: "https://discord.gg/5Ann5C3",
position: "right",
},
{
label: "GitHub",
href: "https://github.com/rmuif/web",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Getting Started",
to: "getting-started",
},
{
label: "Scripts",
to: "scripts",
},
{
label: "Roadmap",
to: "roadmap",
},
],
},
{
title: "Community",
items: [
{
label: "Discord",
href: "https://discord.gg/5Ann5C3",
},
{
label: "Twitter",
href: "https://twitter.com/rmuif",
},
],
},
{
title: "Project",
items: [
{
label: "GitHub",
href: "https://github.com/rmuif/web",
},
{
label: "Code of Conduct",
href:
"https://github.com/rmuif/web/blob/master/CODE_OF_CONDUCT.md",
},
{
label: "Contributing",
href: "https://github.com/rmuif/web/blob/master/CONTRIBUTING.md",
},
{
label: "Security",
href: "https://github.com/rmuif/web/blob/master/SECURITY.md",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} RMUIF`,
},
googleAnalytics: {
trackingID: "UA-141052606-2",
},
image: "img/logo.png",
},
plugins: [require.resolve("@docusaurus/plugin-google-analytics")],
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/rmuif/docs/edit/master",
showLastUpdateAuthor: true,
showLastUpdateTime: true,
routeBasePath: "",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};