-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
225 lines (213 loc) · 5.93 KB
/
docusaurus.config.ts
File metadata and controls
225 lines (213 loc) · 5.93 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import {themes as prismThemes} from 'prism-react-renderer';
import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';
const config: Config = {
title: 'Koreo',
tagline: 'The platform engineering toolkit for Kubernetes',
favicon: 'img/favicon.ico',
// Set the production url of your site here
url: 'https://koreo.dev',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
// Even if you don't use internationalization, 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: './sidebars.ts',
editUrl:
'https://github.com/koreo-dev/koreo.dev/blob/main/',
},
blog: {
showReadingTime: true,
editUrl:
'https://github.com/koreo-dev/koreo.dev/blob/main/',
},
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
stylesheets: [
{
href: 'https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap',
rel: 'stylesheet',
},
{
href: 'https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap',
rel: 'stylesheet',
},
],
themeConfig: {
metadata: [
{ name: 'keywords', content: 'YAML, Infrastructure as Code, IaC, Platform Engineering, DevOps, Kubernetes, Configuration Management, Resource Orchestration, Helm, Kustomize, Koreo' },
{ property: 'og:type', content: 'website' },
{ property: 'og:title', content: 'Koreo' },
{ property: 'og:description', content: 'A new approach to Kubernetes configuration management and resource orchestration.' },
{ property: 'og:url', content: 'https://koreo.dev' },
{ property: 'og:image', content: 'https://koreo.dev/img/og-image.jpg' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:title', content: 'Koreo' },
{ name: 'twitter:description', content: 'A new approach to Kubernetes configuration management and resource orchestration.' },
{ name: 'twitter:image', content: 'https://koreo.dev/img/og-image.jpg' },
{ name: 'twitter:site', content: '@real_kinetic' }
],
colorMode: {
defaultMode: 'light',
disableSwitch: true,
},
navbar: {
logo: {
alt: 'Koreo',
src: 'img/koreo-logo.png',
},
items: [
{
label: 'Compared To',
type: 'dropdown',
items: [
{
label: 'Helm',
to: '/compare/helm',
},
{
label: 'Kustomize',
to: '/compare/kustomize',
},
{
label: 'Argo Workflows',
to: '/compare/argo',
},
{
label: 'Crossplane',
to: '/compare/crossplane',
},
{
label: 'kro',
to: '/compare/kro',
},
]
},
{
label: 'Documentation',
position: 'left',
to: '/docs/overview',
},
{
label: 'Blog',
to: 'https://realkinetic.substack.com/s/koreo',
position: 'left'
},
{
label: 'GitHub',
to: 'https://github.com/koreo-dev',
position: 'left'
},
{
label: 'The YAML Engineer',
to: 'https://theyamlengineer.com',
position: 'right',
},
{
label: 'Konfigurate',
to: 'https://konfigurate.com',
position: 'right'
},
{
label: 'Real Kinetic',
to: 'https://realkinetic.com',
position: 'right',
},
],
},
footer: {
logo: {
alt: 'Koreo',
src: 'img/konfig-icon-logo.svg',
href: '/',
},
links: [
{
title: "Koreo",
items: [
{
label: 'Documentation',
to: '/docs/overview',
},
{
label: 'Blog',
to: 'https://realkinetic.substack.com/s/koreo',
},
{
label: 'GitHub',
to: 'https://github.com/koreo-dev',
}
],
},
{
title: 'Compared To',
items: [
{
label: 'Helm',
href: '/compare/helm',
},
{
label: 'Kustomize',
href: '/compare/kustomize',
},
{
label: 'Argo Workflows',
href: '/compare/argo',
},
{
label: 'Crossplane',
href: '/compare/crossplane',
},
{
label: 'kro',
href: '/compare/kro',
},
]
},
{
title: 'About Real Kinetic',
items: [
{
label: 'Who we are',
to: 'https://realkinetic.com',
},
{
label: 'The YAML Engineer',
to: 'https://theyamlengineer.com',
},
{
label: 'Konfigurate Platform',
to: 'https://konfigurate.com',
},
{
label: 'Our blog',
to: 'https://realkinetic.substack.com/',
},
],
},
],
copyright: `© ${new Date().getFullYear()} Real Kinetic, LLC<br />Boulder, CO`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;