Skip to content

Instantly share code, notes, and snippets.

@casprwang
Created June 5, 2017 02:49
Show Gist options
  • Save casprwang/a54cf7b3db39ad566dfd44e124925a9e to your computer and use it in GitHub Desktop.
Save casprwang/a54cf7b3db39ad566dfd44e124925a9e to your computer and use it in GitHub Desktop.
module.exports = {
siteMetadata: {
title: "Gatsby Starter Blog",
author: "Kyle Mathews",
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: "pages",
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-responsive-image`,
options: {
maxWidth: 590,
},
},
],
},
},
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment