-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
44 lines (44 loc) · 1.02 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
module.exports = {
siteMetadata: {
siteTitle: 'Portfolio',
siteUrl: 'https://vinutv.com',
},
plugins: [
'gatsby-plugin-emotion',
'gatsby-plugin-react-helmet',
'gatsby-transformer-yaml',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/sites/`,
name: 'sites',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-47519312-2',
anonymize: true,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Portfolio: Vinu_tv',
short_name: 'Vinu UI Designer',
description: 'Gatsby.js',
start_url: '/',
background_color: '#191e38',
theme_color: '#6574cd',
display: 'standalone',
icon: 'src/favicon.png',
},
},
`gatsby-plugin-purgecss`,
/* Must be placed at the end */
'gatsby-plugin-offline',
'gatsby-plugin-netlify',
],
};