forked from odyssy-automaton/civic-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
36 lines (36 loc) · 968 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
32
33
34
35
36
module.exports = {
siteMetadata: {
title: 'Civic Software Foundation',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Civic Software Foundation',
short_name: 'Civic',
start_url: '/',
background_color: '#fff',
theme_color: '#000',
display: 'minimal-ui',
icon: 'src/images/civic-icon.png',
},
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint:
'https://hackoregon.us3.list-manage.com/subscribe/post?u=6bed8811c700af6cf48dfe893&id=b11a78686d', // add your MC list endpoint here; see instructions below
},
},
'gatsby-plugin-offline',
'gatsby-plugin-sass',
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images/`,
},
},
],
}