-
Notifications
You must be signed in to change notification settings - Fork 17
/
config.js
47 lines (46 loc) · 1.12 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
const config = {
gatsby: {
pathPrefix: "/",
siteUrl: "https://dunner.io",
gaTrackingId: null
},
header: {
logo: "https://graphql-engine-cdn.hasura.io/img/hasura_icon_white.svg",
title: "Dunner",
githubUrl: "https://github.com/leopardslab/dunner",
helpUrl: "",
tweetText: "",
links: [
{ text: "Docs", link: "/docs" },
{
text: "Cookbook Recipes",
link: "/cookbook-recipes"
},
{
text: "Releases",
link: "https://github.com/leopardslab/dunner/releases"
}
]
},
sidebar: {
forcedNavOrder: [
"/introduction",
"/docs",
"/docs/home",
"/docs/introduction-to-dunner",
"/docs/installation-guide",
"/docs/user-guide",
"/docs/developer-guide",
"/cookbook-recipes"
],
links: [{ text: "", link: "" }]
},
siteMetadata: {
title: "Dunner",
description: "A docker based task-runner",
ogImage: null,
docsLocation: "https://github.com/leopardslab/dunner/wiki",
favicon: "https://graphql-engine-cdn.hasura.io/img/hasura_icon_black.svg"
}
};
module.exports = config;