-
Notifications
You must be signed in to change notification settings - Fork 11
/
docusaurus.config.cjs
156 lines (145 loc) · 4.12 KB
/
docusaurus.config.cjs
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
153
154
155
156
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
// const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('./src/prism-dark.cjs');
const lightCodeTheme = require('./src/prism-light.cjs');
const hq = require('alias-hq');
/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Nebula Docs',
tagline: 'Learn about Nebula here',
url: 'https://nebula.defined.net',
// For deploy previews, don't set a baseUrl
baseUrl: '/',
trailingSlash: true,
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw',
onBrokenAnchors: 'throw',
favicon: 'img/favicon.ico',
plugins: [
[
'docusaurus-plugin-module-alias',
{
alias: hq.get('webpack'),
},
],
],
// Even if you don't use internalization, you can use this field to set useful
// metadata like html lang. For example, if your site is Chinese, you may want
// to replace "en" with "zh-Hans".
i18n: {
defaultLocale: 'en',
locales: ['en'],
},
presets: [
[
'classic',
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
editUrl: 'https://github.com/definednet/nebula-docs/tree/main/',
},
theme: {
customCss: [
require.resolve('./src/css/base.css'),
require.resolve('./src/css/theme.css'),
require.resolve('./src/css/utility.css'),
],
},
}),
],
],
themeConfig:
/** @type {import('@docusaurus/theme-common').ThemeConfig} */
{
image: 'img/nebula-docs-og.png',
navbar: {
title: 'Nebula Docs',
logo: {
alt: 'Defined Networking logo',
href: '/docs/',
src: 'img/mark.svg',
srcDark: 'img/mark-dark.svg',
},
items: [
{
href: 'https://defined.net',
label: 'Defined Networking',
position: 'right',
},
],
},
footer: {
links: [
{
title: 'Docs',
items: [
{
label: 'Guides',
to: '/docs/guides/',
},
{
label: 'Config Reference',
to: '/docs/config/',
},
{
label: 'Docs Github',
href: 'https://github.com/DefinedNet/nebula-docs',
},
],
},
{
title: 'Nebula',
items: [
{
label: 'GitHub',
href: 'https://github.com/slackhq/nebula',
},
{
label: 'Slack',
href: 'https://join.slack.com/t/nebulaoss/shared_invite/enQtOTA5MDI4NDg3MTg4LTkwY2EwNTI4NzQyMzc0M2ZlODBjNWI3NTY1MzhiOThiMmZlZjVkMTI0NGY4YTMyNjUwMWEyNzNkZTJmYzQxOGU',
},
],
},
{
title: 'Defined Networking',
items: [
{
label: 'Home',
href: 'https://defined.net',
},
{
label: 'Blog',
href: 'https://defined.net/blog',
},
{
label: 'Docs',
href: 'https://docs.defined.net',
},
{
label: 'Twitter',
href: 'https://twitter.com/DefinedNet',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} Defined Networking.`,
},
algolia: {
// The application ID provided by Algolia
appId: '3Z2PF7OC67',
// Public Search API key: it is safe to commit it
apiKey: 'e18093227a63ac004263f767e3f5a896',
indexName: 'defined-nebula',
contextualSearch: false,
// Optional: path for search page that enabled by default (`false` to disable it)
searchPagePath: false,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
},
};
module.exports = config;