47 lines
1.1 KiB
JavaScript
47 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: '#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-sitemap',
|
|
'gatsby-plugin-sharp',
|
|
'gatsby-plugin-react-next',
|
|
],
|
|
}
|