-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
191 lines (191 loc) · 5.53 KB
/
docusaurus.config.js
File metadata and controls
191 lines (191 loc) · 5.53 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
module.exports = {
title: "EOS Online Framework",
tagline:
"The professional solution to integrate EOS (Epic Online Services) into your Unreal Engine game, trusted by over 3,000 developers and millions of players. With support for consoles, team-based matchmaking, cross-platform friends and presence, cross-platform e-commerce, authentication done for you and over 400 blueprint nodes, EOS Online Framework gets your game online faster than anyone else.",
url: "https://docs.redpoint.games",
baseUrl: "/",
favicon: "favicon.ico",
organizationName: "redpointgames",
projectName: "docs",
onBrokenLinks: "throw",
onBrokenAnchors: "throw",
markdown: {
hooks: {
onBrokenMarkdownLinks: "throw",
onBrokenMarkdownImages: "throw",
},
},
plugins: [
() => ({
name: "Raw Loader",
configureWebpack: (config, isServer, utils) => {
return {
module: {
rules: [
{
test: /\.bp$/,
use: ["raw-loader"],
},
],
},
};
},
}),
],
themeConfig: {
announcementBar: {
id: "proximity_voice_chat",
content:
'🎉 Proximity voice chat is <a href="/docs/framework/voice_chat">now available</a>!',
backgroundColor: "rgb(175, 255, 172)",
textColor: "#000",
isCloseable: false,
},
prism: {
additionalLanguages: ["cpp", "csharp", "docker", "batch", "powershell"],
},
navbar: {
title: "EOS Online Framework",
logo: {
alt: "EOS Online Framework Logo",
src: "img/EOSLogo_TF_Alt.png",
srcDark: "img/EOSLogo_TF.png",
},
items: [
{
label: "📙 Documentation",
position: "left",
type: "dropdown",
items: [
{
type: "doc",
docId: "setup/index",
label: "👋 Getting started",
hint: "Not sure where to start? Click here!",
},
{
type: "doc",
docId: "framework/index",
label: "🧩 Framework components",
hint: "Components, actors and blueprint nodes to quickly integrate EOS into your game.",
blueprint: true,
},
{
type: "doc",
docId: "ossv1/index",
label: "🌏 Online subsystem guide",
hint: "Use blueprints or standardized C++ to integrate Epic Online Services into your game.",
blueprint: true,
cpp: true,
},
{
type: "doc",
docId: "systems/index",
label: "📃 Modern C++ guide",
hint: "Use modern C++ APIs to integrate Epic Online Services into your game.",
cpp: true,
},
{
type: "doc",
docId: "matchmaking/index",
label: "🥇 Team-based matchmaking",
hint: "Add teams to your game without an external matchmaker.",
blueprint: true,
cpp: true,
},
{
type: "doc",
docId: "dedis/index",
label: "🏢 Dedicated servers for EOS",
hint: "Our recommended approach to running dedicated game servers.",
},
{
type: "doc",
docId: "ossv1/blueprints/reference/index",
label: "📘 Blueprints reference (OSSv1)",
hint: "A comprehensive reference of all auto-generated blueprint nodes.",
blueprint: true,
},
{
type: "doc",
docId: "tools/index",
label: "⚙️ Unreal Editor tools",
hint: "Editor and debugging tools to help you implement Epic Online Services.",
},
{
type: "doc",
docId: "support/index",
label: "🛟 Support",
hint: "How to get help when things aren't working.",
},
],
},
{
type: "doc",
docId: "examples/index",
label: "🎮 Example Projects",
position: "left",
},
{
type: "doc",
docId: "licensing",
label: "⚖️ Editions & Licensing",
position: "left",
},
{
type: "doc",
docId: "changelog",
label: "🎉 Changelog",
position: "left",
},
{
type: "doc",
docId: "support/index",
label: "🛟 Support",
position: "right",
},
],
},
footer: {
style: "dark",
copyright: `Copyright © ${new Date().getFullYear()} Redpoint Games.`,
},
algolia: {
appId: "FIOCNMBFH4",
apiKey: "4346d272d46def333bebaf4f3ffd05ec",
indexName: "redpointgames",
},
},
presets: [
[
"@docusaurus/preset-classic",
{
docs: {
sidebarPath: require.resolve("./sidebars.js"),
editUrl: "https://github.com/RedpointGames/docs/edit/main/",
},
theme: {
customCss: require.resolve("./src/css/custom.css"),
},
},
],
],
scripts: [
{
src: "https://code.jquery.com/jquery-3.5.1.min.js",
integrity: "sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=",
crossorigin: "anonymous",
},
{
src: "/bue/bue-osb.js",
},
],
stylesheets: [
{
href: "/bue/bue-original.css",
},
{
href: "/bue/bue-osb.css",
},
],
};