-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
72 lines (71 loc) · 1.53 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
const PROD_PLUGINS =
process.env.NODE_ENV === 'production'
? [
{
resolve: 'gatsby-plugin-remove-console',
options: {
exclude: ['error', 'warn'],
},
},
]
: [];
module.exports = {
siteMetadata: {
title: `Rail Dot Matrix`,
description: `See a virtual railway dot matrix for any UK station.`,
author: `@davwheat`,
},
flags: {
DEV_SSR: true,
},
plugins: [
...PROD_PLUGINS,
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
{
resolve: `gatsby-plugin-emotion`,
options: {
sourceMap: true,
autoLabel: 'always',
labelFormat: `[local]`,
cssPropOptimization: true,
},
},
'gatsby-plugin-webpack-bundle-analyser-v2',
`gatsby-plugin-webpack-size`,
`gatsby-plugin-react-head`,
{
resolve: `gatsby-plugin-cloudflare-pages`,
options: {
headers: { '/*': ['! X-Frame-Options'] },
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `UK Rail Dot Matrix`,
short_name: `Rail Dot Matrix`,
start_url: `/`,
background_color: `#000`,
theme_color: `#ffa500`,
display: `minimal-ui`,
icon: `src/images/logo.png`,
},
},
`gatsby-plugin-less`,
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
],
};