-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
48 lines (47 loc) · 1.3 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.org/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: "Protests Work",
titleTemplate: "%s | See the impact from Protesting",
description:
"In the wake of the nearly unprecedented protests on racial inequality, police brutality, and killings of people of color by police, this site was established to document the effects of those protests and the outcomes achieved.",
url: "https://www.protestswork.com", // No trailing slash allowed!
// image: "/images/snape.jpg", // Path to your image you placed in the 'static' folder
// twitterUsername: "@occlumency",
},
plugins: [
{ resolve: 'gatsby-plugin-theme-ui',
options: {
prismPreset: 'night-owl',
preset: '@theme-ui/preset-funk'
}
},
{
resolve: "gatsby-plugin-google-tagmanager",
options: {
id: "GTM-TZZQ3M7",
},
},
{
resolve: `gatsby-plugin-webfonts`,
options: {
fonts: {
google: [
{
family: "Lato",
variants: ["300", "400", "500"],
},
{
family: "Bitter",
variants: ["300", "400", "500"],
},
],
},
},
},
],
}