-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
84 lines (83 loc) · 1.76 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
73
74
75
76
77
78
79
80
81
82
83
84
const siteUrl = "https://rsmap.co.uk/";
module.exports = {
siteMetadata: {
siteUrl
},
plugins: [
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: "UA-49984946-8"
},
},
{
resolve: `gatsby-plugin-netlify`,
options: {
headers: {},
allPageHeaders: [],
mergeSecurityHeaders: true,
mergeLinkHeaders: true,
mergeCachingHeaders: true,
transformHeaders: (headers, path) => headers,
generateMatchPathRewrites: true,
},
},
{
resolve: `gatsby-plugin-netlify-headers`,
options: {
headers: {},
allPageHeaders: [],
mergeSecurityHeaders: true,
mergeLinkHeaders: true,
mergeCachingHeaders: true,
transformHeaders: (headers, path) => headers,
generateMatchPathRewrites: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: "RSMap - OSRS Map",
short_name: "RSMap",
start_url: "/",
background_color: "#1d1b15",
theme_color: "#dcbf8c",
display: "standalone",
icon: "static/favicon.png"
},
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: "./static/favicon.png",
injectHTML: true,
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
twitter: false,
yandex: false,
windows: false
}
}
},
{
resolve: `gatsby-plugin-sharp`,
options: {
useMozJpeg: true,
stripMetadata: true,
},
},
`gatsby-plugin-sass`,
`gatsby-plugin-offline`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-netlify`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-netlify-headers`,
`gatsby-plugin-robots-txt`
],
}