forked from f5nodes/wiki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docusaurus.config.js
152 lines (144 loc) · 3.12 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require("prism-react-renderer/themes/github");
const darkCodeTheme = require("prism-react-renderer/themes/dracula");
/** @type {import('@docusaurus/types').Config} */
const config = {
title: "NODES WIKI",
tagline: "your nodes assistant.",
favicon: "img/favicon.svg",
url: "https://wiki.f5nodes.com",
baseUrl: "/",
organizationName: "f5nodes",
projectName: "wiki",
onBrokenLinks: "throw",
onBrokenMarkdownLinks: "warn",
i18n: {
defaultLocale: "en",
locales: ["en"],
},
presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/f5nodes/wiki/tree/main/",
routeBasePath: "/",
showLastUpdateTime: true,
},
blog: false,
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
image: "img/social-card.png",
colorMode: {
defaultMode: "dark",
},
docs: {
sidebar: {
autoCollapseCategories: true,
},
},
announcementBar: {
id: "lets_contribute",
content:
'Let\'s build something great together! Check out the <a target="_blank" rel="noopener noreferrer" href="https://github.com/f5nodes/wiki">github</a> page for ways to contribute.',
backgroundColor: "var(--ifm-color-emphasis-300)",
textColor: "white",
isCloseable: true,
},
algolia: {
appId: "CUEVS66Y1G",
apiKey: "b2dc4ae3199ebaaeedc032742c9d1589",
indexName: "f5nodes",
contextualSearch: true,
debug: false,
},
navbar: {
logo: {
alt: "Nodes Wiki",
src: "img/logo-light.svg",
srcDark: "img/logo-dark.svg",
},
items: [
{
type: "doc",
docId: "intro",
position: "left",
label: "Introduction",
},
{
href: "https://github.com/f5nodes/wiki",
label: "GitHub",
position: "right",
},
{
type: "localeDropdown",
position: "right",
},
],
},
footer: {
links: [
{
title: "Docs",
items: [
{
label: "Introduction",
to: "/intro",
},
{
label: "Celestia",
to: "/celestia",
},
{
label: "ZetaChain",
to: "/zetachain",
},
],
},
{
title: "Community",
items: [
{
label: "Telegram",
href: "https://t.me/f5nodes",
},
{
label: "Twitter",
href: "https://twitter.com/f5nodes",
},
],
},
{
title: "More",
items: [
{
label: "F5 Nodes",
href: "https://f5nodes.com",
},
{
label: "GitHub",
href: "https://github.com/f5nodes/wiki",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} F5 NODES. All Rights Reserved.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
plugins: [],
};
module.exports = config;