-
Notifications
You must be signed in to change notification settings - Fork 9
/
gatsby-config.js
77 lines (77 loc) · 1.69 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 = {
pathPrefix: '/',
siteMetadata: {
siteUrl: 'https://www.michelemazzucco.it/'
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'data',
path: './src/data/'
}
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Roboto:300,400', 'Roboto Mono']
}
}
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-113472346-1',
anonymize: true,
}
},
{
resolve: 'gatsby-plugin-favicon',
options: {
logo: './src/assets/favicon.png',
injectHTML: true,
icons: {
android: false,
appleIcon: true,
appleStartup: false,
coast: false,
favicons: true,
firefox: false,
twitter: true,
yandex: false,
windows: false
}
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Michele Mazzucco',
short_name: 'mzzmhl',
start_url: '/',
background_color: '#1e2732',
theme_color: '#1e2732',
display: 'minimal-ui',
icons: [
{
src: '/favicons/favicon-16x16.png',
sizes: '16x16',
type: 'image/png'
},
{
src: '/favicons/favicon-32x32.png',
sizes: '32x32',
type: 'image/png'
}
]
}
},
//'gatsby-plugin-react-next',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-transformer-json',
'gatsby-plugin-react-svg',
'gatsby-plugin-styled-components'
],
}