forked from input-output-hk/cardano-documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
104 lines (104 loc) · 3.15 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
const config = {
gatsby: {
pathPrefix: '/',
siteUrl: 'https://docs.cardano.org',
gaTrackingId: `UA-119953429-2`,
trailingSlash: true,
},
header: {
logo: '/images/cardano-logo.svg',
logoLink: '/',
title: '<p>DOCS</p>',
githubUrl: 'https://github.com/input-output-hk/cardano-documentation',
helpUrl: '',
tweetText: '',
social: `<li>
<a href="https://twitter.com/cardano" target="_blank" rel="noopener noreferrer">
<div class="twitterBtn">
<img src='/images/twitter-icon.svg' alt={'Twitter'}/>
</div>
</a>
</li>
<li>
<a href="https://discord.gg/UjUP8nz" target="_blank" rel="noopener noreferrer">
<div class="discordBtn">
<img src='/images/discord-icon.svg' alt={'Discord'}/>
</div>
</a>
</li>`,
links: [{ text: '', link: '' }],
search: {
enabled: true,
indexName: process.env.GATSBY_ALGOLIA_INDEX_NAME,
algoliaAppId: process.env.GATSBY_ALGOLIA_APP_ID,
algoliaApiKey: process.env.GATSBY_ALGOLIA_API_KEY,
},
},
sidebar: {
forcedNavOrder: [
'/01-introduction/', // add trailing slash if enabled above
// '/02-getting-started/'
],
collapsedNav: [
// add headings here if to be collapsed by default
// '/02-getting-started/', // add trailing slash if enabled above
'/getting-started',
'/getting-started/operating-a-stake-pool',
'/new-to-cardano',
'/core-concepts',
'/explore-cardano',
'/explore-cardano/cardano-architecture-overview',
'/explore-cardano/about-cardano-network',
'/cardano-components',
'/native-tokens',
'/marlowe',
'/rosetta',
'/community',
'/tools',
],
links: [
{
text: 'Cardano Ecosystem Tools',
link: 'https://developers.cardano.org/tools/',
},
{
text: 'Glossary',
link: 'https://www.essentialcardano.io/glossary?sort=alphabetical',
},
{ text: 'Cardano.org', link: 'https://cardano.org' },
{ text: 'Developer Portal', link: 'https://developers.cardano.org/' },
],
frontLine: true, // This toggles collapse arrows
ignoreIndex: true,
title:
"<a href='https://why.cardano.org' target='_blank' rel='noopener noreferrer'>Cardano </a><div class='accentCircle'></div><a href='https://www.haskell.org/' target='_blank' rel='noopener noreferrer'>Haskell</a>",
},
siteMetadata: {
title: 'Cardano Documentation',
description: 'Documentation for the Cardano ecosystem ',
ogImage: null,
docsLocation:
'https://github.com/input-output-hk/cardano-documentation/tree/master/content',
favicon: 'pwa-512.png',
},
pwa: {
enabled: false, // disabling this will also remove the existing service worker.
manifest: {
name: 'Cardano Documention',
short_name: 'Cardano Docs',
start_url: '/',
background_color: '#1d1e21',
theme_color: '#5281f7',
display: 'standalone',
crossOrigin: 'use-credentials',
icons: [
{
src: 'pwa-512.png',
sizes: `512x512`,
type: `image/png`,
},
],
},
},
}
module.exports = config