-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
59 lines (59 loc) · 1.43 KB
/
Copy pathgatsby-config.js
File metadata and controls
59 lines (59 loc) · 1.43 KB
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
module.exports = {
siteMetadata: {
siteUrl: 'https://www.gliwickiklubstrzelecki.pl',
defaultTitle: 'Gliwicki Klub Strzelecki',
titleTemplate: '%s · GKS',
defaultDescription: 'Pasjonaci strzelectwa',
defaultImage: '/images/default-image-gks-range.jpg'
},
plugins: [
'gatsby-plugin-image',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Gliwicki Klub Strzelecki',
short_name: 'GKS',
start_url: '/',
background_color: '#efefef',
theme_color: '#3f51b5',
display: 'standalone',
icon: 'src/images/favicon-gks-black.png'
}
},
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: 'https://www.gliwickiklubstrzelecki.pl',
policy: [{ userAgent: '*', allow: '/' }]
}
},
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/images/'
},
__key: 'images'
},
{
resolve: 'gatsby-theme-material-ui',
options: {
webFontsConfig: {
fonts: {
google: [
{
family: 'Titillium Web',
variants: ['300', '400', '500'],
subsets: ['latin', 'latin-ext']
}
]
}
}
}
}
]
};