Files
old-v2-frontend/gatsby-config.js
2018-09-05 21:44:24 +02:00

48 lines
1.1 KiB
JavaScript

module.exports = {
siteMetadata: {
title: 'Saburly',
siteUrl: `https://www.saburly.com`,
},
plugins: [
'gatsby-plugin-netlify',
'gatsby-plugin-page-transitions',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-wordpress',
options: {
baseUrl: 'swp.sarajevo.net',
protocol: 'https',
hostingWPCOM: false,
useACF: true,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Saburly',
short_name: 'Saburly',
start_url: '/',
background_color: '#ffffff',
theme_color: '#5763AB',
display: 'minimal-ui',
icon: 'src/images/favicon.png',
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-125227964-1',
head: false,
anonymize: true,
respectDNT: true,
exclude: ['/preview/**', '/do-not-track/me/too/'],
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sitemap',
'gatsby-plugin-robots-txt',
'gatsby-plugin-sharp',
'gatsby-plugin-react-next',
],
}