gatsby-starter-deck/gatsby-config.js
2018-02-10 13:56:56 +01:00

32 lines
614 B
JavaScript

module.exports = {
siteMetadata: {
name: `Fabian Schultz`,
title: `Gatsby Deck`,
date: `November 23, 2017`
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-offline`,
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [`gatsby-remark-smartypants`]
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `slides`,
path: `${__dirname}/src/pages/`
}
},
{
resolve: `gatsby-plugin-postcss-sass`,
options: {
postCssPlugins: [],
precision: 8
}
}
]
};