18 lines
312 B
JavaScript
18 lines
312 B
JavaScript
|
|
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,
|
||
|
|
}
|
||
|
|
}
|
||
|
|
],
|
||
|
|
}
|