forked from davwheat/rail-announcements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
46 lines (44 loc) · 1.21 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
const __IS_DEV__ = process.env.NODE_ENV !== 'production'
// These plugins will only be used in production builds
const prodPlugins = !__IS_DEV__ ? [] : []
module.exports = {
siteMetadata: {
siteUrl: 'https://rail-announcements.davwheat.dev',
title: 'UK Rail Announcement Generator',
description: 'Generate various station and on-train announcements for the UK rail network using raw audio recordings.',
author: 'David Wheatley',
},
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/rs2.png`,
},
},
{
resolve: '@sentry/gatsby',
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /\.inline\.svg$/,
},
},
},
],
}