-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
54 lines (54 loc) · 1.6 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
54
module.exports = {
siteMetadata: {
title: 'Hero Damage',
url: 'https://shadowlands-prepatch.herodamage.com',
github: 'https://github.com/herotc/shadowlands-prepatch.herodamage.com',
description: 'Class theorycrafting community, latest simulation results and resources -based on SimulationCraft- for World of Warcraft.',
keywords: 'herotc, herodamage, world of warcraft, shadowlands prepatch, wow sl prepatch, theorycrafting, simulationcraft, simc',
wowClasses: ['death-knight', 'demon-hunter', 'druid', 'hunter', 'mage', 'monk', 'paladin', 'priest', 'rogue', 'shaman', 'warlock', 'warrior']
},
plugins: [
'gatsby-plugin-no-sourcemaps',
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-109496873-1',
head: true,
anonymize: true,
respectDNT: true
}
},
'gatsby-plugin-react-helmet',
'gatsby-plugin-herodamage-material-ui',
{
resolve: 'gatsby-plugin-styled-components',
options: {
displayName: process.env.NODE_ENV !== 'production'
}
},
'gatsby-plugin-herodamage-layout',
'gatsby-plugin-herodamage-i18n',
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: []
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'reports',
path: `${__dirname}/src/reports/`
}
},
'gatsby-plugin-herodamage-reports',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'posts',
path: `${__dirname}/src/posts/`
}
},
'gatsby-plugin-herodamage-posts'
]
}