-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (40 loc) · 1.17 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
const siteName = 'Subtle Asian Traits | Daily Bruin';
const description = 'The Facebook group Subtle Asian Traits amasses thousands of memes and posts about Asian culture, providing a hub for its 1.5 million members to relate over a shared identity.';
const image = 'https://assets.dailybruin.com/images/flatpage.2019.subtle-asian-traits/illo-5bd9c2eb93f6d5f92a6dbf296ebcfc6c.jpg';
const year = '2019';
const prefixPath = `/${year}/subtle-asian-traits`;
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.subtle-asian-traits',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-28181852-23',
head: false,
anonymize: true,
},
}
],
}