-
Notifications
You must be signed in to change notification settings - Fork 37
/
vocs.config.ts
32 lines (31 loc) · 990 Bytes
/
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
import { defineConfig } from "vocs";
export default defineConfig({
title: "Eternum",
sidebar: [
{
text: "Game",
link: "/game",
collapsed: true,
items: [
{ text: "Banking", link: "/game/banking" },
{ text: "Hyperstructures", link: "/game/hyperstructures" },
{ text: "Hexception", link: "/game/land-hexagons" },
{ text: "Resources", link: "/game/resources" },
{ text: "Realms", link: "/game/realms" },
{ text: "World Map", link: "/game/world-map-hex" },
],
},
{
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: "Common issues", link: "/development/common-issues" },
],
},
],
});