gatsby-starter-deck/gatsby-config.js

32 lines
614 B
JavaScript
Raw Normal View History

2017-11-24 02:22:47 +03:00
module.exports = {
siteMetadata: {
name: `Fabian Schultz`,
title: `Gatsby Deck`,
2018-02-10 15:56:56 +03:00
date: `November 23, 2017`
2017-11-24 02:22:47 +03:00
},
2018-02-10 15:56:56 +03:00
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
}
}
]
2017-11-24 02:22:47 +03:00
};