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

48 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

module.exports = {
siteMetadata: {
title: 'Saburly',
2018-09-05 13:51:12 +02:00
siteUrl: `https://www.saburly.com`,
},
plugins: [
'gatsby-plugin-netlify',
'gatsby-plugin-page-transitions',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-wordpress',
options: {
2019-01-25 05:07:49 -08:00
baseUrl: 'saburly.wordpress.com',
protocol: 'https',
hostingWPCOM: false,
useACF: true,
},
},
2018-09-05 12:15:12 +02:00
{
2018-09-05 12:41:20 +02:00
resolve: `gatsby-plugin-manifest`,
2018-09-05 12:15:12 +02:00
options: {
2018-09-05 12:41:20 +02:00
name: 'Saburly',
short_name: 'Saburly',
start_url: '/',
2018-09-05 21:44:24 +02:00
background_color: '#ffffff',
theme_color: '#5763AB',
2018-09-05 12:41:20 +02:00
display: 'minimal-ui',
2018-09-05 21:44:24 +02:00
icon: 'src/images/favicon.png',
2018-09-05 12:15:12 +02:00
},
},
{
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',
2018-09-05 13:51:12 +02:00
'gatsby-plugin-sitemap',
2018-09-05 13:57:58 +02:00
'gatsby-plugin-robots-txt',
'gatsby-plugin-sharp',
2018-09-05 13:51:12 +02:00
'gatsby-plugin-react-next',
],
}