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

53 lines
1.2 KiB
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
{
resolve: `gatsby-plugin-favicon`,
options: {
logo: './src/images/favicon.png',
appName: null,
appDescription: null,
developerName: null,
developerURL: null,
dir: 'auto',
lang: 'en-US',
background: '#5763AB',
theme_color: '#fff',
display: 'standalone',
orientation: 'any',
start_url: '/?homescreen=1',
version: '1.0',
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
opengraph: false,
twitter: false,
yandex: false,
windows: false,
},
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
],
}