-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
53 lines (51 loc) · 1.57 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
module.exports = {
siteMetadata: {
siteUrl: `https://www.coralibre.de`,
title: `CoraLibre`,
description: `Eine transparente OpenSource-Lösung und Alternative zur Corona-Warn-App ohne Google Services.`,
},
plugins: [
'gatsby-plugin-resolve-src',
'gatsby-plugin-sass',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
{
resolve: `gatsby-plugin-react-i18next`,
options: {
path: `${__dirname}/locales`,
languages: [`en`, `de`],
defaultLanguage: `de`,
i18nextOptions: {
interpolation: {
escapeValue: false // not needed for react as it escapes by default
},
keySeparator: false,
nsSeparator: false
}
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/assets/images`,
},
},
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: "./src/assets/images/favicon.png",
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
yandex: false,
windows: false
}
}
}
],
}