-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.ts
91 lines (90 loc) · 2.18 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
87
88
89
90
91
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: '/riverscapes-website',
siteMetadata: {
title: `Riverscapes Consortium`,
// Just leave this empty ('') if you don't want a help widget in the footer
helpWidgetId: '153000000178',
author: {
name: `Joe Wheaton`,
},
description: ``,
siteUrl: `https://riverscapes.github.io/riverscapes-website/`,
social: {
twitter: `RiverscapesC`,
},
menuLinks: [
{
title: 'About us',
url: '/about-us',
items: [
{
title: 'What is a riverscape',
url: '/about-us/what-is-a-riverscape',
},
{
title: 'FAIR principles',
url: '/about-us/fair-principles',
},
],
},
{
title: 'Our work',
url: '/our-work/',
items: [
{
title: 'Riverscapes Consortium Data Exchange',
url: '/our-work/data-exchange',
},
{
title: 'Riverscapes Consortium Applications',
url: '/our-work/apps',
},
{
title: 'Riverscapes Consortium Models',
url: '/our-work/models',
},
{
title: 'Data Standards and Compliance',
url: '/our-work/standards',
},
],
},
{
title: 'Impact stories',
url: '/',
},
{
title: 'Workshops & events',
url: '/workshops-events',
},
{
title: 'Get involved',
url: '/get-involved',
},
{
title: 'Contact',
url: '/',
},
{
title: 'Search',
url: '/search',
},
],
},
plugins: [
{
resolve: '@riverscapes/gatsby-theme',
options: {
contentPath: `${__dirname}/content/page`,
manifest: {
name: `Riverscapes Consortium`,
short_name: `Riverscapes`,
start_url: `/riverscapes-website`,
},
},
},
],
} as GatsbyConfig