-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
executable file
·53 lines (49 loc) · 1.37 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
const slugify = require('slugify')
const siteName = 'Enterprise Fall 2019: A Wasted Opportunity'
const description =
'The University of California committed to reaching zero waste 12 years ago. But it will not hit zero waste by the deadline.'
const image =
'https://assets.dailybruin.com/images/interactive.2019.enterprise/enterprise illo-7a0a9ab90ce71be70b09faaf7f86945e.jpg'
const year = '2019'
const prefixPath = `/${year}/wasted-opportunity`
const url = `https://features.dailybruin.com${prefixPath}/`
module.exports = {
pathPrefix: prefixPath,
siteMetadata: {
siteName,
description,
url,
image,
},
plugins: [
'gatsby-plugin-typescript',
'gatsby-plugin-react-helmet',
'gatsby-plugin-emotion',
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'src/utils/typography',
},
},
{
resolve: '@dailybruin/gatsby-source-kerckhoff',
options: {
slug: 'interactive.2019.enterprise',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-28181852-23',
head: false,
anonymize: true,
},
},
{
resolve: 'gatsby-source-published-google-sheets',
options: {
sheetID: '1TJVrlFP0zPViE63jbPGZXGI1aixPwLYS6OdenLml76g',
},
},
],
}