forked from mietenwatch/mw-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
77 lines (77 loc) · 1.98 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
module.exports = {
siteMetadata: {
title: 'Mietenwatch — Berlins Mietmarkt unter der Lupe',
titleTemplate: '%s',
description:
'Berlins Mietmarkt unter der Lupe: Mietenwatch analysiert 80.000 Angebote und zeigt wie dramatisch die Marktlage ist.',
url: 'https://www.mietenwatch.de', // No trailing slash allowed!
image: '/images/og_image_mietenwatch.jpg', // Path to your image you placed in the 'static' folder
twitterUsername: '@mietenwatch'
},
plugins: [
{
resolve: 'gatsby-plugin-mdx',
options: {
defaultLayouts: {
default: require.resolve('./src/components/with-layout/index.jsx')
}
}
},
{
resolve: `gatsby-plugin-react-leaflet`,
options: {
linkStyles: false
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Mietenwatch`,
short_name: `Mietenwatch`,
start_url: `/`,
background_color: `#dd8893`,
theme_color: `#dd8893`,
display: `minimal-ui`,
icon: `./src/images/icons/favicon.png`
}
},
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `Work Sans`,
variants: [`400`, `400i`, `600`],
subsets: [`latin`]
},
{
family: `Alegreya`,
variants: [`400`, `400i`, `700`]
},
{
family: `Gochi Hand`
}
]
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/images`,
name: 'images'
}
},
{
resolve: `gatsby-plugin-netlify`,
options: {
allPageHeaders: ['Link: <https://api.mietenwatch.de>; rel=preconnect;']
}
},
'gatsby-plugin-react-helmet',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
'gatsby-plugin-sass',
'gatsby-plugin-webpack-bundle-analyzer',
'gatsby-plugin-no-sourcemaps'
]
};