forked from BibliothecaDAO/eternum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvocs.config.ts
102 lines (99 loc) · 3.04 KB
/
vocs.config.ts
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
import path from "path";
import { defineConfig } from "vocs";
export default defineConfig({
description: "Your Complete Guide to Mastering Eternum",
iconUrl: "/eternum_new_logo.svg",
logoUrl: "/eternum_new_logo.svg",
ogImageUrl: "/eternum_documentation.png",
theme: {
colorScheme: "dark",
variables: {
color: {
textAccent: "#f6c297",
background: "#14100d",
backgroundDark: "#14100d",
noteBackground: "#14100d",
},
},
},
vite: {
resolve: {
alias: {
"@": path.resolve(__dirname, "./docs"),
},
},
},
font: {
google: "Open Sans",
},
title: "Eternum",
sidebar: [
{
text: "Overview",
items: [
{ text: "Introduction", link: "/overview/introduction" },
{ text: "Game Entry", link: "/overview/entry" },
{ text: "Cartridge Controller", link: "/overview/controller" },
{ text: "Quick Links", link: "/overview/links" },
{ text: "Disclaimer - MUST READ", link: "/overview/disclaimer" },
{ text: "Bridge Closure - MUST READ", link: "/overview/bridging" },
{ text: "Resource Addresses", link: "/overview/resource-addresses" },
],
},
{
text: "Seasons",
items: [
{ text: "Overview", link: "/seasons/overview" },
{ text: "Rewards", link: "/seasons/rewards" },
],
},
{
text: "Game Mechanics",
items: [
{ text: "Key Concepts", link: "/mechanics/key-concepts" },
{
text: "Realm Management",
collapsed: true,
items: [
{ text: "Realm", link: "/mechanics/realm/realm" },
{ text: "Buildings", link: "/mechanics/realm/buildings" },
{ text: "Wonders", link: "/mechanics/realm/wonders" },
],
},
{
text: "Resources",
collapsed: true,
items: [
{ text: "Resources", link: "/mechanics/resources/resources" },
{ text: "Production", link: "/mechanics/resources/production" },
{ text: "Storage", link: "/mechanics/resources/storage" },
],
},
{
text: "Military",
collapsed: true,
items: [
{ text: "Units", link: "/mechanics/military/units" },
{ text: "Combat", link: "/mechanics/military/combat" },
],
},
{ text: "Trading", link: "/mechanics/trading" },
{ text: "World Map", link: "/mechanics/world-map" },
{ text: "Hyperstructures & Victory Points", link: "/mechanics/hyperstructures" },
{ text: "Tribes", link: "/mechanics/tribes" },
],
},
{
text: "Development",
link: "/development",
collapsed: true,
items: [
{ text: "Getting Started", link: "/development/getting-started" },
{ text: "Client", link: "/development/client" },
{ text: "Contracts", link: "/development/contracts" },
{ text: "SDK", link: "/development/sdk" },
{ text: "Collaborators", link: "/development/collaborators" },
],
},
],
});