Skip to content

Instantly share code, notes, and snippets.

@canertuzunar
Created April 14, 2021 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save canertuzunar/e7152195d70fcacbdce25a850f762dcd to your computer and use it in GitHub Desktop.
Save canertuzunar/e7152195d70fcacbdce25a850f762dcd to your computer and use it in GitHub Desktop.
//gatsby-config.js
module.exports = {
siteMetadata: {
title: "example-gatsby-project",
},
plugins: [
"gatsby-plugin-image",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
"gatsby-transformer-remark",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
__key: "images",
},
{
resolve: "gatsby-source-filesystem",
options: {
path: "./src/blog/"
}
}
],
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment