-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
113 lines (113 loc) · 2.8 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
/** @type {import('@docusaurus/types').DocusaurusConfig} */
const math = require("remark-math");
const katex = require("rehype-katex");
module.exports = {
plugins: [
[
require.resolve("@easyops-cn/docusaurus-search-local"),
{
indexDocs: true,
indexBlog: false,
docsRouteBasePath: "/",
language: "en",
},
],
],
title: "Team 2554 Documentation",
tagline: "Hawks fly high",
url: "https://team-2554.gitlab.io",
baseUrl: "/",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
favicon: "img/favicon.ico",
organizationName: "Team 2554",
projectName: "documentation",
stylesheets: [
{
href: "https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css",
type: "text/css",
integrity:
"sha384-AfEj0r4/OFrOo5t7NnNe46zW/tFgW6x/bCJG8FqQCEo3+Aro6EYUG4+cU+KJWu/X",
crossorigin: "anonymous",
},
],
themeConfig: {
colorMode: {
defaultMode: "dark",
respectPrefersColorScheme: false,
switchConfig: {
darkIcon: "🌙",
lightIcon: "☀️",
},
},
navbar: {
title: "Team 2554 Documentation",
logo: {
alt: "Team 2554 Logo",
src: "img/warhawks_logo.png",
},
items: [
{
href: "https://gitlab.com/team-2554/documentation",
label: "GitLab",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Social",
items: [
{
label: "Our Website",
href: "https://jpsrobotics2554.org/index.html",
},
{
label: "Instagram",
href: "https://www.instagram.com/jpsrobotics2554/",
},
{
label: "Blue Alliance",
href: "https://www.thebluealliance.com/team/2554",
},
],
},
{
title: "Code",
items: [
{
label: "Github",
href: "https://github.com/team2554",
},
{
label: "Gitlab",
href: "https://gitlab.com/team-2554",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Team 2554. Built with Docusaurus.`,
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://gitlab.com/team-2554/documentation/-/tree/master",
routeBasePath: "/",
remarkPlugins: [math],
rehypePlugins: [katex],
showLastUpdateTime: true,
showLastUpdateAuthor: true,
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
};