This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdocusaurus.config.js
153 lines (148 loc) · 4.57 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
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion
const lightCodeTheme = require('prism-react-renderer/themes/nightOwlLight');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');
// @type {import('@docusaurus/types').Config}
const config = {
title: 'WALDO',
tagline: 'Cheat detection powered by AI',
url: 'https://waldo.vision',
baseUrl: '/',
onBrokenLinks: 'log',
onBrokenMarkdownLinks: 'log',
onDuplicateRoutes: 'log',
favicon: 'img/favicon.ico',
organizationName: 'waldo-vision', // Usually your GitHub org/user name.
projectName: 'docs.waldo.vision', // Usually your repo name.
titleDelimiter: ' ⋅ ',
baseUrlIssueBanner: false,
presets: [
[
'classic',
({
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
editUrl: 'https://github.com/waldo-vision/docs.waldo.vision/edit/master/',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
'https://github.com/waldo-vision/docs.waldo.vision/edit/master',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
}),
],
],
themeConfig:
({
metadata: [{name:'keywords', content:'WALDO, Vision, Cheaters, Cheats, Hacks, Anti-Cheat, AI, Machine Learning, Cloud, Open Source, Free, Electron, Gaming, Rainbow 6, CSGO, Valorant, Auto, GTA, FPS, Gamers, Shooters, Mr Homeless, Basically Homeless, Homeless, Youtube, Discord, Docs, Documentation, Minecraft'}, {name:'description', content:'WALDO is a cheat detection system powered by AI. It is a free, open source, and cross-platform cheat detection system. It is a tool for gamers to detect cheats and hacks in games.'}],
image: 'img/WALDO-banner.png',
announcementBar: {
id: 'announcement',
content:
'WALDO is still in development. <a target="_blank" href="https://bit.ly/3mqDTV0"> Learn more by joining the discord </a>',
backgroundColor: '#F44',
textColor: '#FFF',
isCloseable: false,
},
colorMode: {
defaultMode: 'dark',
disableSwitch: false,
respectPrefersColorScheme: false,
switchConfig: {
darkIcon: '🌙',
darkIconStyle: {
marginLeft: '2px',
},
// Unicode icons such as '\u2600' will work
// Unicode with 5 chars require brackets: '\u{1F602}'
lightIcon: '☀️',
lightIconStyle: {
marginLeft: '1px',
},
},
},
navbar: {
title: 'WALDO',
hideOnScroll: true,
logo: {
alt: 'WALDO Logo',
src: 'img/waldo-logo.svg',
srcDark: 'img/waldo-logo.svg',
href:'/'
},
items: [
{
type: 'doc',
docId: 'Getting-Started/intro',
position: 'right',
label: 'Docs',
},
{to: '/blog', label: 'Blog', position: 'right'},
{
href: 'https://github.com/waldo-vision/',
label: 'GitHub',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Docs',
items: [
{
label: 'Getting Started',
to: '/docs/Getting-Started/intro',
},
{
label: 'Contributing',
to: '/docs/Getting-Started/contributing',
}
],
},
{
title: 'Community',
items: [
{
label: 'Discord',
href: 'https://bit.ly/3mqDTV0',
},
{
label: 'Twitter',
href: 'https://twitter.com/waldo-vision',
},
{
label: 'YouTube',
href: 'https://www.youtube.com/user/PappaZeee',
}
],
},
{
title: 'More',
items: [
{
label: 'Blog',
to: '/blog',
},
{
label: 'GitHub',
href: 'https://github.com/waldo-vision/',
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} WALDO Vision under MPL License.`,
},
prism: {
theme: lightCodeTheme,
darkTheme: darkCodeTheme,
},
}),
};
module.exports = config;