gatsby-starter-deck/gatsby-config.js
Fabian Schultz 52716a57fb Fix deps.
2018-07-30 11:18:48 -04:00

27 lines
518 B
JavaScript

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