gatsby-starter-deck/gatsby-config.js

27 lines
514 B
JavaScript
Raw Normal View History

2017-11-24 02:22:47 +03:00
module.exports = {
siteMetadata: {
name: `Fabian Schultz`,
title: `Gatsby Deck`,
2018-07-30 18:22:26 +03:00
date: `July 30, 2018`,
2017-11-24 02:22:47 +03:00
},
2018-02-10 15:56:56 +03:00
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-offline`,
2018-07-30 18:18:48 +03:00
`gatsby-transformer-remark`,
2018-02-10 15:56:56 +03:00
{
resolve: `gatsby-source-filesystem`,
options: {
name: `slides`,
path: `${__dirname}/src`,
},
2018-02-10 15:56:56 +03:00
},
{
resolve: `gatsby-plugin-postcss-sass`,
options: {
postCssPlugins: [],
precision: 8,
},
},
],
2017-11-24 02:22:47 +03:00
};