forked from hasura/gatsby-gitbook-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
45 lines (44 loc) · 1.23 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
const config = {
"gatsby": {
"pathPrefix": "/",
"siteUrl": "https://learn.hasura.io",
"gaTrackingId": null
},
"header": {
"logo": "https://graphql-engine-cdn.hasura.io/learn-hasura/assets/homepage/favicon.png",
"logoLink": "https://learn.hasura.io",
"title": "Gatsby Gitbook Boilerplate",
"githubUrl": "https://github.com/hasura/gatsby-gitbook-boilerplate",
"helpUrl": "",
"tweetText": "",
"links": [
{ "text": "", "link": ""}
],
"search": {
"enabled": false,
"indexName": "",
"algoliaAppId": process.env.GATSBY_ALGOLIA_APP_ID,
"algoliaSearchKey": process.env.GATSBY_ALGOLIA_SEARCH_KEY,
"algoliaAdminKey": process.env.ALGOLIA_ADMIN_KEY
}
},
"sidebar": {
"forcedNavOrder": [
"/introduction",
"/codeblock"
],
"links": [
{ "text": "Hasura", "link": "https://hasura.io"},
],
"frontline": false,
"ignoreIndex": true,
},
"siteMetadata": {
"title": "Gatsby Gitbook Boilerplate | Hasura",
"description": "Documentation built with mdx. Powering learn.hasura.io ",
"ogImage": null,
"docsLocation": "https://github.com/hasura/gatsby-gitbook-boilerplate/tree/master/content",
"favicon": "https://graphql-engine-cdn.hasura.io/img/hasura_icon_black.svg"
},
};
module.exports = config;