-
Notifications
You must be signed in to change notification settings - Fork 105
/
gatsby-config.js
45 lines (45 loc) · 1.01 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
module.exports = {
siteMetadata: {
title: 'The GDPR Checklist',
siteUrl: 'https://gdprchecklist.io'
},
plugins: [
'gatsby-plugin-react-helmet',
`gatsby-plugin-emotion`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-offline`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/images`,
name: 'images',
},
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://gdprchecklist.io',
sitemap: 'https://gdprchecklist.io/sitemap.xml',
policy: [{ userAgent: '*', allow: '/' }]
}
},
{
resolve: 'gatsby-plugin-favicon',
options: {
logo: './src/images/favicon.png',
injectHTML: true,
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
twitter: true,
yandex: false,
windows: false
}
}
},
],
};