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: 'saburly.wordpress.com', 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', ], }