-
Notifications
You must be signed in to change notification settings - Fork 22
/
gatsby-config.js
56 lines (55 loc) · 1.54 KB
/
gatsby-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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
const mainNavigation = require('./navigation/main')
const footerNavigation = require('./navigation/footer')
const sidebarNavigation = require('./navigation/sidebar')
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: `Mysterium Network Documentation`,
siteUrl: `https://docs-v2.mysterium.network`,
description: ``,
},
plugins: [
`gatsby-plugin-netlify-cms`,
{
resolve: 'gatsby-theme-apollo-docs',
options: {
root: __dirname,
contentDir: 'content',
baseDir: '',
siteName: 'Documentation',
pageTitle: 'Mysterium Network Docs',
menuTitle: 'Mysterium Platform',
githubRepo: 'mysteriumnetwork/documentation',
twitterHandle: 'MysteriumNet',
youtubeUrl: 'https://www.youtube.com/c/MysteriumNetwork',
description: "An example of how to set up Apollo's documentation theme",
navConfig: mainNavigation,
footerNavConfig: footerNavigation,
// defaultVersion: '1',
// versions: {
// '1': 'version-1'
// },
algoliaApiKey: 'ca9e0e82e9fbd9156e4827590f0802dd',
algoliaIndexName: 'mysterium',
gatsbyRemarkPlugins: [],
sidebarCategories: sidebarNavigation
}
},
{
resolve: `gatsby-plugin-google-gtag`,
options: {
trackingIds: [
"G-FPJCX33Y51",
],
pluginConfig: {
head: true,
},
},
},
]
}