Skip to content

Instantly share code, notes, and snippets.

@rubenRP
Created April 27, 2020 07:26
Show Gist options
  • Save rubenRP/38879374a73d8cebb9be58be379d44ae to your computer and use it in GitHub Desktop.
Save rubenRP/38879374a73d8cebb9be58be379d44ae to your computer and use it in GitHub Desktop.
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/blog`,
name: `blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/pages`,
name: `pages`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/assets`,
name: `assets`,
},
},
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment