-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocusaurus.config.js
More file actions
53 lines (53 loc) · 1.27 KB
/
docusaurus.config.js
File metadata and controls
53 lines (53 loc) · 1.27 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
module.exports = {
title: "Overlay",
tagline: "Trade data streams",
url: "https://overlay-docs.com",
baseUrl: "/",
favicon: "img/favicon.ico",
organizationName: "overlay", // Usually your GitHub org/user name.
projectName: "overlay-docs", // Usually your repo name.
themeConfig: {
prism: {
additionalLanguages: ["ejs"],
theme: require("prism-react-renderer/themes/vsDark")
},
navbar: {
title: "Overlay",
logo: {
alt: 'Overlay logo',
src: 'img/logo.svg',
srcDark: 'img/logo-white.svg'
},
items: [
{
href: "https://www.notion.so/Overlay-Protocol-29da60fd11e9436ea69e2a5e0db28a74",
label: "Notion",
position: "right"
},
{
href: "https://github.com/overlay-market",
label: "GitHub",
position: "right"
},
{
href: "https://twitter.com/OverlayProtocol",
label: "Twitter",
position: "right"
}
]
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
routeBasePath: '/', // Serve the docs at the site's root
/* other docs plugin options */
},
blog: false, // Optional: disable the blog plugin
// ...
},
]
]
}