forked from Riverscapes/developer-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.ts
86 lines (85 loc) · 2.04 KB
/
gatsby-config.ts
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
import { GatsbyConfig } from 'gatsby'
module.exports = {
// You need pathPrefix if you're hosting GitHub Pages at a Project Pages or if your
// site will live at a subdirectory like https://example.com/mypathprefix/.
// pathPrefix: '/developer-website',
siteMetadata: {
title: `Riverscapes Developer Website`,
// Optional but leave this blank if you don't want to use it.
helpWidgetId: "",
flags: {
DEV_SSR: false,
},
author: {
name: `Philip Bailey`,
},
description: ``,
siteUrl: `https://riverscapes.github.io/developer-website`,
social: {
twitter: `RiverscapesC`,
},
menuLinks: [
{
title: 'Standards',
url: '/standards',
items: [],
},
{
title: 'Dev Tools',
url: '/dev-tools',
items: [
{
title: 'API',
url: '/dev-tools',
},
{
title: 'Command Line Interface',
url: '/dev-tools/rscli',
},
{
title: 'Cyber Castor',
url: '/dev-tools/cyber-castor',
},
{
title: 'RSXML Python Package',
url: '/dev-tools/rsxml',
}
],
},
{
title: 'Documentation',
url: '/documentation',
items: [
{
title: 'Visual Identity',
url: '/documentation/visual-identity',
}, {
title: 'Documentation Websites',
url: '/documentation',
},
{
title: 'Demo Page',
url: '/documentation/demo',
},
{
title: 'Developing Riverscapes Tools',
url: '/documentation/rstools',
}
]
}
],
},
plugins: [
{
resolve: '@riverscapes/gatsby-theme',
options: {
contentPath: `${__dirname}/content/page`,
manifest: {
name: `Riverscapes Consortium`,
short_name: `Riverscapes`,
start_url: `/`,
},
},
},
],
} as GatsbyConfig