forked from marlon360/rki-covid-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
57 lines (57 loc) · 1.33 KB
/
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
module.exports = {
title: "Robert Koch-Institut API (v2)",
description: "An API to fetch COVID-19 data from RKI via JSON",
dest: "dist/docs",
base: "/docs/",
themeConfig: {
sidebar: [
{
title: "Start", // required
path: "/", // optional, link of the title, which should be an absolute path and must exist
collapsable: false, // optional, defaults to true
sidebarDepth: 1, // optional, defaults to 1
children: ["/"],
},
{
title: "Endpoints",
children: [
{
title: "Germany 🇩🇪",
path: "/endpoints/germany",
},
{
title: "States",
path: "/endpoints/states",
},
{
title: "Districts",
path: "/endpoints/districts",
},
{
title: "Vaccinations 💉",
path: "/endpoints/vaccinations",
},
{
title: "Maps 🗺",
path: "/endpoints/maps",
},
{
title: "Testing",
path: "/endpoints/testing",
},
],
},
],
search: true,
nav: [
{
text: "Home",
link: "/",
},
{
text: "GitHub",
link: "https://github.com/marlon360/rki-covid-api",
},
],
},
};