forked from draftbit/avatar-generator
-
Notifications
You must be signed in to change notification settings - Fork 4
/
gatsby-config.js
46 lines (46 loc) · 1.01 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
module.exports = {
siteMetadata: {
title:
'Personas by Draftbit | A playful avatar generator for the modern age.',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'persona-avatar-generator-draftbit',
short_name: 'avatar-generator',
start_url: '/',
background_color: '#5a45ff',
theme_color: '#5a45ff',
display: 'minimal-ui',
icon: 'src/images/favicon.png',
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-96165051-4',
respectDNT: true,
},
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /avatars/,
},
},
},
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
typeName: 'Config',
path: `./src/data/`,
},
},
'gatsby-plugin-offline',
`gatsby-plugin-netlify`,
],
}