forked from loft-sh/vcluster-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocusaurus.config.js
158 lines (156 loc) · 4.01 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
153
154
155
156
157
158
__webpack_public_path__ = "/docs/";
const resolveGlob = require("resolve-glob");
module.exports = {
title: "vcluster docs | Virtual Clusters for Kubernetes",
tagline: "Virtual Clusters for Kubernetes",
url: "https://vcluster.com",
baseUrl: __webpack_public_path__,
favicon: "/media/vcluster_symbol.svg",
organizationName: "loft-sh", // Usually your GitHub org/user name.
projectName: "vcluster-docs", // Usually your repo name.
i18n: {
defaultLocale: "en",
locales: ["en"],
},
themeConfig: {
announcementBar: {
id: 'beta',
isCloseable: false,
content: 'vCluster v0.20 is in beta. Do not use in production. Questions? Join our <a href="https://slack.loft.sh" target="_blank">Slack community</a>.',
backgroundColor: '#f2f2f2',
textColor: '#17202A',
},
tableOfContents: {
// default is ##, ### so add ####
minHeadingLevel: 2,
maxHeadingLevel: 4,
},
colorMode: {
defaultMode: "light",
disableSwitch: true,
respectPrefersColorScheme: false,
},
navbar: {
logo: {
alt: "vcluster",
src: "/media/vCluster_horizontal-orange.svg",
href: "https://vcluster.com/",
target: "_self",
},
items: [
{
type: "docsVersionDropdown",
position: "left",
dropdownItemsAfter: [
{ to: "https://vcluster.com/docs/v0.19", label: "v0.19 Stable" },
],
dropdownActiveClassDisabled: true,
},
{
href: "https://vcluster.com/",
label: "Website",
position: "left",
target: "_self",
},
{
label: "Docs",
position: "left",
to: "/",
},
{
href: "https://loft.sh/blog",
label: "Blog",
position: "left",
target: "_self",
},
{
href: "https://slack.loft.sh/",
className: "slack-link",
"aria-label": "Slack",
position: "right",
},
{
href: "https://github.com/loft-sh/vcluster-docs",
className: "github-link",
"aria-label": "GitHub",
position: "right",
},
],
},
algolia: {
appId: "K85RIQNFGF",
apiKey: "42375731adc726ebb99849e9051aa9b4",
indexName: "vcluster",
placeholder: "Search...",
algoliaOptions: {},
},
footer: {
style: "light",
links: [],
copyright: `Copyright © ${new Date().getFullYear()} <a href="https://loft.sh/">Loft Labs, Inc.</a>`,
},
prism: {
additionalLanguages: ["bash", "hcl"],
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
path: "docs",
routeBasePath: "/",
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/loft-sh/vcluster-docs/edit/main/",
lastVersion: "current",
versions: {
current: {
label: "v0.20",
banner: "none",
badge: false,
},
},
},
theme: {
customCss: resolveGlob.sync(["./src/css/**/*.scss"]),
},
},
],
[
"redocusaurus",
{
specs: [
{
spec: "schemas/config-openapi.json",
},
],
theme: {
primaryColor: "#00bdff",
redocOptions: {
hideDownloadButton: false,
disableSearch: true,
colors: {
border: {
dark: "#00bdff",
light: "#00bdff",
},
},
},
},
},
],
],
themes: ["@saucelabs/theme-github-codeblock"],
plugins: ["docusaurus-plugin-sass", "plugin-image-zoom"],
scripts: [
{
src: "https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js",
async: true,
},
{
src: "/docs/js/custom.js",
async: true,
},
],
clientModules: resolveGlob.sync(["./src/js/**/*.js"]),
};