-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
48 lines (46 loc) · 1.28 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
const siteName = 'Happy Birthday to the Internet | Daily Bruin'
const description = 'On Oct. 29, 1969, a graduate student under Leonard Kleinrock sent the data transmission “LO” and launched the internet age.'
const image = "https://assets.dailybruin.com/images/flatpage.2019.internet/internet.XZ.7-80b1b2501caaedf271b5c9574b0a54e9.jpg";
const year = '2019';
const prefixPath = `/${year}/happy-birthday-internet`;
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: 'flatpage.2019.internet',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-28181852-23',
head: false,
anonymize: true,
},
},
{
resolve: 'gatsby-source-published-google-sheets',
options: {
sheetID: '1TJVrlFP0zPViE63jbPGZXGI1aixPwLYS6OdenLml76g',
},
},
],
}