-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
40 lines (40 loc) · 1.06 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
module.exports = {
siteMetadata: {
title: `Book of Hanz`,
description: `The Book of Hanz unlocks the code to better Fate games than you ever imagined.`,
author: `@amazingrando`,
sharingImage: `https://bookofhanz.com/sharing.png`,
siteUrl: `https://bookofhanz.com`,
},
plugins: [
'gatsby-plugin-react-helmet',
`gatsby-plugin-emotion`,
`gatsby-plugin-postcss`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `book`,
path: `${__dirname}/src/content`,
ignore: [`apocrypha/**`],
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `apocrypha-fate`,
path: `${__dirname}/src/content/apocrypha/fate`,
},
},
{
resolve: `gatsby-plugin-umami`,
options: {
websiteId: '3a735553-6f11-4f6d-9877-1e688ae43c2a',
srcUrl: 'https://umami-amazingrando.herokuapp.com/umami.js',
includeInDevelopment: false,
autoTrack: true,
respectDoNotTrack: true,
},
},
`gatsby-transformer-remark`,
],
};