Created
August 26, 2019 23:09
-
-
Save trevorblades/90e6db73c5c40cac38e0f5572f5df8fe to your computer and use it in GitHub Desktop.
Sourcing from a theme consumer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
plugins: [ | |
{ | |
resolve: 'gatsby-theme-esports', | |
options: { | |
root: __dirname | |
} | |
} | |
] | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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