Added packages wp, helmet and base config to fetch data with graphql

This commit is contained in:
Moris Zen
2018-06-25 09:19:20 +02:00
parent a25a63e200
commit 57f717fec0
3 changed files with 42 additions and 0 deletions

17
gatsby-config.js Normal file
View File

@@ -0,0 +1,17 @@
module.exports = {
siteMetadata: {
title: 'Saburly',
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-wordpress',
options: {
baseUrl: 'swp.sarajevo.net',
protocol: 'https',
hostingWPCOM: false,
useACF: true,
}
}
],
}