-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.js
34 lines (33 loc) · 1.09 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
const config = {
gatsby: {
pathPrefix: "/",
siteUrl: "https://github.com/OpenDiablo2/OpenDiablo2",
gaTrackingId: null
},
header: {
logo: "https://github.com/OpenDiablo2/OpenDiablo2/raw/master/d2logo.png",
logoLink: "https://github.com/OpenDiablo2/OpenDiablo2",
title: "Open Diablo II",
githubUrl: "https://github.com/OpenDiablo2/OpenDiablo2",
helpUrl: "https://github.com/OpenDiablo2/OpenDiablo2/issues",
tweetText: "",
links: [{ text: "", link: "" }],
},
sidebar: {
forcedNavOrder: ["/introduction", "/configfile", "/screenshots", "/tables"],
links: [
{ text: "Discord", link: "https://discord.gg/pRy8tdc" },
{ text: "Twitch", link: "https://www.twitch.tv/essial/" }
],
frontline: false,
ignoreIndex: true
},
siteMetadata: {
title: "OpenDiablo II",
description: "OpenDiablo II Documentation & Ressources",
ogImage: null,
docsLocation: "https://github.com/OpenDiablo2/Website/tree/master/content",
favicon: "https://github.com/OpenDiablo2/OpenDiablo2/raw/master/d2logo.png"
}
};
module.exports = config;