Files
old-v2-frontend/gatsby-config.js

44 lines
1.0 KiB
JavaScript

module.exports = {
siteMetadata: {
title: 'Saburly',
},
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: '#f7f0eb',
theme_color: '#a2466c',
display: 'minimal-ui',
icon: 'src/images/favicon.png', // This path is relative to the root of the site.
},
},
{
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-sharp',
],
}