2018-06-25 09:19:20 +02:00
|
|
|
module.exports = {
|
|
|
|
|
siteMetadata: {
|
|
|
|
|
title: 'Saburly',
|
|
|
|
|
},
|
|
|
|
|
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: {
|
2018-08-29 14:05:56 +02:00
|
|
|
baseUrl: 'swp.sarajevo.net',
|
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
|
|
|
{
|
|
|
|
|
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,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2018-07-06 10:18:15 +02:00
|
|
|
'gatsby-transformer-sharp',
|
|
|
|
|
'gatsby-plugin-sharp',
|
2018-06-25 09:19:20 +02:00
|
|
|
],
|
|
|
|
|
}
|