Files
uber-cities/gatsby-config.js
Sara Vieira 6f1bb26113 add ga
2018-12-07 00:01:10 +01:00

59 lines
1.3 KiB
JavaScript

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`
]
}