-
Notifications
You must be signed in to change notification settings - Fork 3
/
gatsby-config.js
57 lines (56 loc) · 1.45 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
const path = require('path');
module.exports = {
siteMetadata: {
title: `CivicDataLab`,
summary: '',
description:
'A research lab working on the intersection use data, tech, design and social science to strengthen the course of civic engagements in India.',
siteUrl: 'https://civicdatalab.in',
image: '/cdl_logo.png',
social: {
twitter: '',
github: '',
linkedin: ''
}
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: path.join(__dirname, 'src', 'images')
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'content',
path: path.join(__dirname, 'content')
}
},
{
resolve: 'gatsby-plugin-mailchimp',
options: {
endpoint: ' https://civicdatalab.us17.list-manage.com/subscribe/post?u=6d9135407622328dd66aff2ca&id=891171b752&f_id=00eec2e1f0',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-120203184-1',
anonymize: true,
respectDNT: true,
enableWebVitalsTracking: true
}
},
'gatsby-background-image',
'gatsby-plugin-styled-components',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-transformer-remark',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap'
]
};