-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
170 lines (159 loc) · 5.47 KB
/
Copy pathconfig.js
File metadata and controls
170 lines (159 loc) · 5.47 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
import { defineConfig } from 'vitepress'
// https://vitepress.dev/reference/site-config
export default defineConfig({
base: '/',
cleanUrls: true,
lang: 'en-US',
title: 'WaterdogPE Docs',
description:
'Documentation for WaterdogPE — a fast, customizable proxy for Minecraft: Bedrock Edition.',
lastUpdated: true,
// Imported BookStack content may contain links we have not ported yet.
// Keep this lenient for now; tighten to `false` once the content is finalized.
ignoreDeadLinks: true,
head: [
['link', { rel: 'icon', href: '/favicon.ico' }],
['link', { rel: 'apple-touch-icon', href: '/img/WDLogo.png' }],
['meta', { name: 'theme-color', content: '#0f172a' }],
[
'meta',
{
name: 'keywords',
content:
'Waterdog, WaterdogPE, Minecraft, Bedrock, Bedrock Edition, Proxy, Java, Plugins, Documentation, StarGate, BungeeCord',
},
],
['meta', { property: 'og:type', content: 'website' }],
['meta', { property: 'og:title', content: 'WaterdogPE Documentation' }],
[
'meta',
{
property: 'og:description',
content:
'Documentation for WaterdogPE — a fast, customizable proxy for Minecraft: Bedrock Edition.',
},
],
[
'meta',
{
property: 'og:image',
content:
'https://github.com/WaterdogPE/Branding/raw/master/logo/WaterdogV2.png',
},
],
],
// Default to dark mode to match the marketing site (slate-950).
appearance: 'dark',
themeConfig: {
logo: '/img/WDLogo.png',
siteTitle: 'WaterdogPE',
nav: [
{ text: 'Home', link: '/' },
{
text: 'WaterdogPE Guides',
items: [
{ text: 'Overview', link: '/overview' },
{
text: 'WaterdogPE Setup',
link: '/waterdogpe-setup/starting-waterdog',
},
{
text: 'Entry Level Plugin API Guide',
link: '/entry-level-plugin-api-guide/prerequisites',
},
{ text: 'Plugin API', link: '/plugins/introduction' },
{
text: 'Integration',
link: '/integration/integrating-with-slappers-npcs',
},
],
},
{
text: 'Suggested Plugins & Extensions',
items: [
{ text: 'Introduction', link: '/extensions/introduction' },
{ text: 'StarGate Modules', link: '/stargate-commons/stargate-modules' },
{ text: 'StarGate: Server Setup', link: '/stargate-plugins/server-setup' },
{ text: 'StarGate: Client Setup', link: '/stargate-plugins/client-setup' },
],
},
{ text: 'Main Site', link: 'https://waterdog.dev' },
],
// One site-wide sidebar grouped per book (a "shelf" in BookStack terms).
sidebar: [
{ text: 'Overview', link: '/overview' },
{
text: 'WaterdogPE Setup',
collapsed: false,
items: [
{ text: 'Starting Waterdog', link: '/waterdogpe-setup/starting-waterdog' },
{ text: 'Proxy Configuration', link: '/waterdogpe-setup/proxy-configuration' },
{ text: 'Software Compatibility', link: '/waterdogpe-setup/software-compatibility' },
{ text: 'Troubleshooting', link: '/waterdogpe-setup/troubleshooting' },
],
},
{
text: 'Entry Level Plugin API Guide',
collapsed: false,
items: [
{ text: 'Prerequisites', link: '/entry-level-plugin-api-guide/prerequisites' },
{ text: 'Maven Setup', link: '/entry-level-plugin-api-guide/maven-setup' },
{ text: 'Your First Plugin', link: '/entry-level-plugin-api-guide/first-plugin' },
],
},
{
text: 'Plugin API',
collapsed: false,
items: [
{ text: 'Introduction', link: '/plugins/introduction' },
{ text: 'Working with Players', link: '/plugins/players-guide' },
{ text: 'Commands Guide', link: '/plugins/commands-guide' },
{ text: 'Events Guide', link: '/plugins/events-guide' },
{ text: 'Fallback & Join Handler', link: '/plugins/fallback-join-handler' },
{ text: 'Scheduling Tasks', link: '/plugins/scheduling-task' },
{ text: 'Proxy Communication', link: '/plugins/proxy-communication' },
],
},
{
text: 'Integration',
collapsed: false,
items: [
{
text: 'Integrating with slappers / NPCs',
link: '/integration/integrating-with-slappers-npcs',
},
],
},
{
text: 'Suggested Plugins & Extensions',
collapsed: false,
items: [
{ text: 'Introduction', link: '/extensions/introduction' },
{
text: 'StarGate',
collapsed: true,
items: [
{ text: 'StarGate Modules', link: '/stargate-commons/stargate-modules' },
{ text: 'Server Setup', link: '/stargate-plugins/server-setup' },
{ text: 'Client Setup', link: '/stargate-plugins/client-setup' },
],
},
],
},
],
socialLinks: [
{ icon: 'github', link: 'https://github.com/WaterdogPE' },
{ icon: 'discord', link: 'https://discord.gg/QcRRzXX' },
],
search: { provider: 'local' },
editLink: {
pattern:
'https://github.com/WaterdogPE/docs-website/edit/master/docs/:path',
text: 'Edit this page on GitHub',
},
footer: {
message: 'Released under the GPL-3.0 License.',
copyright: 'Copyright © WaterdogPE',
},
},
})