2018-06-25 09:19:20 +02:00
|
|
|
module.exports = {
|
|
|
|
|
siteMetadata: {
|
|
|
|
|
title: 'Saburly',
|
2018-09-05 13:51:12 +02:00
|
|
|
siteUrl: `https://www.saburly.com`,
|
2018-06-25 09:19:20 +02:00
|
|
|
},
|
|
|
|
|
plugins: [
|
2018-06-27 14:20:54 +02:00
|
|
|
'gatsby-plugin-netlify',
|
2018-08-30 11:07:16 +02:00
|
|
|
'gatsby-plugin-page-transitions',
|
2018-06-25 09:19:20 +02:00
|
|
|
'gatsby-plugin-react-helmet',
|
|
|
|
|
{
|
|
|
|
|
resolve: 'gatsby-source-wordpress',
|
|
|
|
|
options: {
|
2019-01-25 05:07:49 -08:00
|
|
|
baseUrl: 'saburly.wordpress.com',
|
2018-06-25 09:19:20 +02:00
|
|
|
protocol: 'https',
|
|
|
|
|
hostingWPCOM: false,
|
|
|
|
|
useACF: true,
|
2018-07-06 10:18:15 +02:00
|
|
|
},
|
|
|
|
|
},
|
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
|
|
|
},
|
|
|
|
|
},
|
2018-09-05 13:43:09 +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/'],
|
|
|
|
|
},
|
|
|
|
|
},
|
2018-07-06 10:18:15 +02:00
|
|
|
'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',
|
2018-07-06 10:18:15 +02:00
|
|
|
'gatsby-plugin-sharp',
|
2018-09-05 13:51:12 +02:00
|
|
|
'gatsby-plugin-react-next',
|
2018-06-25 09:19:20 +02:00
|
|
|
],
|
|
|
|
|
}
|