Skip to content

Instantly share code, notes, and snippets.

@trevorblades
Created August 26, 2019 23:09
Show Gist options
  • Save trevorblades/90e6db73c5c40cac38e0f5572f5df8fe to your computer and use it in GitHub Desktop.
Save trevorblades/90e6db73c5c40cac38e0f5572f5df8fe to your computer and use it in GitHub Desktop.
Sourcing from a theme consumer
module.exports = {
plugins: [
{
resolve: 'gatsby-theme-esports',
options: {
root: __dirname
}
}
]
};
module.exports = ({root}) => ({
plugins: [
{
resolve: 'gatsby-source-fileystem',
options: {
path: `${root}/data`
}
},
// other plugins
]
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment