-
Notifications
You must be signed in to change notification settings - Fork 37
/
gatsby-config.js
58 lines (56 loc) · 1.28 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
module.exports = {
siteMetadata: {
title: 'Is there Uber In ?',
siteUrl: 'http://isthereuber.in'
},
plugins: [
'gatsby-plugin-sitemap',
'gatsby-plugin-react-helmet',
'gatsby-plugin-robots-txt',
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-123681166-3'
}
},
{
resolve: 'gatsby-plugin-favicon',
options: {
logo: './src/images/favicon.png',
appName: 'Is there Uber In ?',
developerName: 'Sara Vieira',
dir: 'auto',
lang: 'en-US',
orientation: 'portrait',
background_color: '#181743',
theme_color: '#181743',
display: 'standalone',
start_url: '/?homescreen=1',
version: '1.0',
icons: {
android: true,
appleIcon: true,
appleStartup: true,
favicons: true,
firefox: true,
opengraph: true,
twitter: true
}
}
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Noto Sans SC']
}
}
},
'gatsby-plugin-emotion',
{
resolve: 'gatsby-plugin-create-client-paths',
options: { prefixes: ['/search/*'] }
},
`gatsby-plugin-offline`
]
}