-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgatsby-config.js
42 lines (42 loc) · 1.03 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
module.exports = {
siteMetadata: {
title: 'React Vancouver',
siteUrl: `https://reactvancouver.com`,
description: `Join one of the biggest tech communities in Vancouver`,
},
plugins: [
{
resolve: 'gatsby-source-contentful',
options: {
spaceId: '019o3pe3du31',
accessToken:
'ede76a7cd0de9ecd143668c44ead2ef2a642e85f2ea6d6c4ac206f4478556174',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-109965261-1',
head: false,
anonymize: true,
respectDNT: true,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'React Vancouver',
short_name: 'React Vancouver',
start_url: '/',
background_color: '#F9F9FB',
display: 'minimal-ui',
icon: 'static/favicon.png',
},
},
'gatsby-plugin-sitemap',
'gatsby-plugin-emotion',
'gatsby-plugin-react-helmet',
'gatsby-transformer-remark',
// 'gatsby-plugin-eslint',
],
}