forked from davwheat/rail-announcements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
47 lines (45 loc) · 1.18 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
const __IS_DEV__ = process.env.NODE_ENV !== 'production'
// These plugins will only be used in production builds
const prodPlugins = !__IS_DEV__
? [
{
resolve: 'gatsby-plugin-remove-console',
options: {
exclude: ['error', 'warn'],
},
},
]
: []
module.exports = {
siteMetadata: {
siteUrl: 'https://rail-announcements.davwheat.dev',
title: 'Rail Announcements',
description: 'Announcements for the UK rail network',
author: '@davwheat',
},
plugins: [
...prodPlugins,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-head`,
`gatsby-plugin-material-ui`,
`gatsby-plugin-less`,
`gatsby-plugin-webpack-bundle-analyser-v2`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `UK Rail Announcements`,
short_name: `Rail Announcements`,
start_url: `/?utm_source=pwa`,
background_color: `#000`,
theme_color: `#ffa500`,
display: `minimal-ui`,
icon: `src/images/logo.png`, // This path is relative to the root of the site.
},
},
{
resolve: '@sentry/gatsby',
},
],
}