-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
31 lines (30 loc) · 989 Bytes
/
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
module.exports = {
siteMetadata: {
title: 'MyData Scotland',
author: 'Will Abramson',
description: 'A Scottish community of the data conscious individuals, part of the MyData Global organisation and movement.',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'MyData Scotland Hub',
short_name: 'MyData Scotland',
start_url: '/',
background_color: '#663399',
theme_color: '#663399',
display: 'minimal-ui',
icon: 'src/assets/images/mydata/mydata-logothumb.png', // This path is relative to the root of the site.
},
},
'gatsby-plugin-sass',
'gatsby-plugin-offline',
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://mydata.us20.list-manage.com/subscribe/post?u=7cef1bd5acceb8fd0c70f0739&id=b1f1a60af3', // add your MC list endpoint here; see instructions below
},
}
],
}