Skip to content

Instantly share code, notes, and snippets.

@urcades
Created October 13, 2017 02:30
Show Gist options
  • Save urcades/e03ec9b5394dd84c9577c11647b01400 to your computer and use it in GitHub Desktop.
Save urcades/e03ec9b5394dd84c9577c11647b01400 to your computer and use it in GitHub Desktop.
module.exports = {
siteMetadata: {
title: "Édouard U.",
author: "Édouard Urcades",
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/pages`,
name: "pages",
},
},
{
resolve: `gatsby-transformer-remark`,
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 2000,
linkImagesToOriginal: false,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
"gatsby-remark-prismjs",
"gatsby-remark-copy-linked-files",
"gatsby-remark-smartypants",
],
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-59560755-1',
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-styled-components`,
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment