-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocusaurus.config.ts
More file actions
65 lines (60 loc) · 1.55 KB
/
docusaurus.config.ts
File metadata and controls
65 lines (60 loc) · 1.55 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
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: 'JACK.SYSTEMS',
tagline: 'Software and ML Engineer specializing in AI/ML infrastructure',
favicon: 'img/favicon.ico',
url: 'https://JackSteve-code.github.io',
baseUrl: '/Scalable-llmop/',
organizationName: 'JackSteve-code',
projectName: 'Scalable-llmop',
trailingSlash: false,
onBrokenLinks: 'warn',
presets: [
[
'classic',
{
docs: {
sidebarPath: './sidebars.ts',
routeBasePath: '/',
},
blog: false,
theme: {
customCss: './src/css/custom.css',
},
} satisfies Preset.Options,
],
],
themeConfig: {
colorMode: {
defaultMode: 'light',
respectPrefersColorScheme: true,
},
navbar: {
title: 'JACK.SYSTEMS',
logo: {
alt: '',
src: 'img/logo.svg',
style: { display: 'none' }, // STOPS THE LOGO FROM RENDERING
},
items: [
{
href: 'https://github.com/JackSteve-code/Scalable-llmop',
label: 'GitHub Source',
position: 'right',
},
],
},
footer: {
style: 'light',
links: [],
copyright: `Copyright © ${new Date().getFullYear()} Jack Steve | AI/ML Infrastructure Expert`,
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
} satisfies Preset.ThemeConfig,
};
export default config;