-
Notifications
You must be signed in to change notification settings - Fork 5
/
gatsby-config.js
80 lines (80 loc) · 2.16 KB
/
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
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
module.exports = {
siteMetadata: {
title: 'CascadiaJS 2018 / Nov 15-16 / Seattle, WA',
organizers: require('./data/organizers.json'),
speakers: require('./data/speakers.json')
},
plugins: [
'gatsby-plugin-react-helmet',
`gatsby-transformer-remark`,
`gatsby-plugin-twitter`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/markdown/`,
name: 'markdown-pages'
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/static/stickers/`,
name: 'stickers'
}
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: './src/images/logo.jpg',
injectHTML: true,
icons: {
android: false,
appleIcon: true,
appleStartup: true,
coast: true,
favicons: true,
// doesn't do anything yet
firefox: true,
// doesn't do anything yet, but open graph headers should be managed in a different way i think
twitter: false,
yandex: true,
windows: true
}
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'CascadiaJS 2018',
// short name should be no longer than 12 characters
short_name: 'CascadiaJS 2018',
description: 'a JSConf for the PacNW',
start_url: '/',
display: 'minimal-ui',
icon: 'src/images/logo.jpg'
}
},
// 'gatsby-plugin-offline',
'gatsby-plugin-remove-serviceworker',
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: 'https://cascadiajs.us1.list-manage.com/subscribe/post?u=ffa37cf28eebc9e75b8558f3b&id=d1b100650c'
}
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-75426-16',
// Puts tracking script in the head instead of the body
head: false,
// Setting this parameter is optional
anonymize: true,
// Setting this parameter is also optional
respectDNT: true,
// Avoids sending pageview hits from custom paths
exclude: []
}
}
]
};