1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-07-01 06:01:48 +02:00
portfolio/gatsby-config.js

26 lines
491 B
JavaScript
Raw Normal View History

2018-04-06 17:24:35 +02:00
module.exports = {
siteMetadata: {
title: 'Gatsby Default Starter',
},
plugins: [
'gatsby-plugin-react-helmet',
2018-04-07 14:18:06 +02:00
'gatsby-transformer-json',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'data',
path: `${__dirname}/data/`,
},
},
2018-04-06 17:24:35 +02:00
{
resolve: 'gatsby-plugin-sass',
options: {
includePaths: [
2018-04-07 14:18:06 +02:00
`${__dirname}/node_modules`,
`${__dirname}/src/styles`,
2018-04-06 17:24:35 +02:00
],
},
},
],
}