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

34 lines
790 B
JavaScript
Raw Normal View History

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,
},
},
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: '/',
background_color: '#f7f0eb',
theme_color: '#a2466c',
display: 'minimal-ui',
icon: 'src/images/favicon.png', // This path is relative to the root of the site.
2018-09-05 12:15:12 +02:00
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
],
}