-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
177 lines (164 loc) · 4.61 KB
/
Copy pathdocusaurus.config.ts
File metadata and controls
177 lines (164 loc) · 4.61 KB
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
import type * as Preset from '@docusaurus/preset-classic';
import type { Config } from '@docusaurus/types';
import hq from 'alias-hq';
import darkCodeTheme from './src/prism-dark.cjs';
import lightCodeTheme from './src/prism-light.cjs';
let gtag: { trackingID: string; anonymizeIP: boolean } | undefined;
// Only enable google analytics in prod. Note: this is a CF Workers environment variable.
if (process.env.GTAG_TRACKING_ID) {
/* eslint-disable-next-line no-console -- Allow build config to log what's happening */
console.log('Google Analytics enabled');
gtag = {
trackingID: process.env.GTAG_TRACKING_ID,
anonymizeIP: true,
};
} else {
/* eslint-disable-next-line no-console -- Allow build config to log what's happening */
console.log('Google Analytics disabled');
gtag = undefined;
}
const config: Config = {
title: 'Nebula Docs',
tagline: 'Documentation for Nebula, an open source overlay networking tool',
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'),
},
],
],
scripts: [
{
src: 'https://plausible.io/js/pa--fa02jhZoajfPxSb4zpFj.js',
async: true,
},
'/scripts/plausible.js',
],
// 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',
{
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'),
],
},
gtag,
} satisfies Preset.Options,
],
],
themeConfig: {
image: 'img/nebula-docs-og.png',
metadata: [{ name: 'keywords', content: 'nebula, overlay network, VPN, mesh networking, defined networking' }],
navbar: {
title: 'Nebula Documentation',
logo: {
alt: 'Nebula logo',
href: '/docs/',
src: 'img/mark.svg',
srcDark: 'img/mark-dark.svg',
},
items: [
{
href: 'https://defined.net',
label: 'Defined Networking',
position: 'right',
rel: 'noopener',
},
],
},
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/zt-39pk4xopc-CUKlGcb5Z39dQ0cK1v7ehA',
},
],
},
{
title: 'Defined Networking',
items: [
{
label: 'Home',
href: 'https://defined.net',
rel: 'noopener',
},
{
label: 'Blog',
href: 'https://defined.net/blog',
rel: 'noopener',
},
{
label: 'Docs',
href: 'https://docs.defined.net',
rel: 'noopener',
},
],
},
],
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,
additionalLanguages: ['bash'],
},
} satisfies Preset.ThemeConfig,
};
module.exports = config;