2018-04-11 13:46:55 +02:00
|
|
|
const meta = require('./src/data/meta.json')
|
2018-04-08 00:19:54 +02:00
|
|
|
|
2018-04-06 17:24:35 +02:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
2018-04-08 00:19:54 +02:00
|
|
|
siteUrl: `${meta.url}`,
|
2018-04-06 17:24:35 +02:00
|
|
|
},
|
|
|
|
plugins: [
|
2018-04-08 00:19:54 +02:00
|
|
|
'gatsby-plugin-react-next',
|
2018-04-06 17:24:35 +02:00
|
|
|
'gatsby-plugin-react-helmet',
|
2018-04-08 00:19:54 +02:00
|
|
|
'gatsby-plugin-sitemap',
|
2018-04-07 14:18:06 +02:00
|
|
|
{
|
2018-04-08 22:49:58 +02:00
|
|
|
resolve: 'gatsby-plugin-sass',
|
2018-04-07 14:18:06 +02:00
|
|
|
options: {
|
2018-04-08 22:49:58 +02:00
|
|
|
includePaths: [`${__dirname}/node_modules`, `${__dirname}/src/styles`],
|
2018-04-07 14:18:06 +02:00
|
|
|
},
|
|
|
|
},
|
2018-04-06 17:24:35 +02:00
|
|
|
{
|
2018-04-08 22:49:58 +02:00
|
|
|
resolve: 'gatsby-source-filesystem',
|
2018-04-06 17:24:35 +02:00
|
|
|
options: {
|
2018-04-11 13:46:55 +02:00
|
|
|
name: 'data',
|
|
|
|
path: `${__dirname}/src/data/`,
|
2018-04-06 17:24:35 +02:00
|
|
|
},
|
2018-04-08 22:49:58 +02:00
|
|
|
},
|
|
|
|
'gatsby-transformer-json',
|
2018-04-11 12:46:55 +02:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-plugin-google-analytics',
|
|
|
|
options: {
|
|
|
|
trackingId: `${meta.googleanalytics}`,
|
|
|
|
head: false,
|
|
|
|
anonymize: true,
|
|
|
|
respectDNT: true,
|
|
|
|
},
|
|
|
|
},
|
2018-04-08 22:49:58 +02:00
|
|
|
],
|
2018-04-06 17:24:35 +02:00
|
|
|
}
|