-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
gatsby-config.ts
63 lines (59 loc) · 1.56 KB
/
gatsby-config.ts
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
import type { GatsbyConfig } from 'gatsby'
const __IS_DEV__ = process.env.NODE_ENV !== 'production'
// These plugins will only be used in production builds
const prodPlugins = !__IS_DEV__ ? [] : []
const config: GatsbyConfig = {
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',
},
flags: {
DEV_SSR: true,
},
plugins: [
...prodPlugins,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-head`,
{
resolve: `gatsby-plugin-emotion`,
options: {
sourceMap: true,
autoLabel: 'always',
labelFormat: `[local]`,
cssPropOptimization: true,
},
},
`gatsby-plugin-less`,
`gatsby-plugin-webpack-bundle-analyser-v2`,
`gatsby-plugin-provide-react`,
{
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$/,
},
},
},
`gatsby-plugin-cloudflare-pages`,
],
}
export default config