gatsby-starter-deck/gatsby-config.js

39 lines
948 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-layout`,
2018-02-10 15:56:56 +03:00
`gatsby-plugin-react-helmet`,
`gatsby-plugin-offline`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `slides`,
path: `${__dirname}/src/slides`,
},
2018-02-10 15:56:56 +03:00
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
`gatsby-remark-copy-linked-files`,
{
resolve: `gatsby-remark-images`,
options: {
// It's important to specify the maxWidth (in pixels) of
// the content container as this plugin uses this as the
// base for generating different widths of each image.
maxWidth: 1920,
},
},
],
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
],
2017-11-24 02:22:47 +03:00
};