Update gatsby-config.js

This commit is contained in:
Daniel Lautzenheiser 2022-09-30 11:22:43 -04:00
parent b02a347f3e
commit 1c66125223

View File

@ -28,14 +28,14 @@ module.exports = {
{ {
resolve: 'gatsby-source-filesystem', resolve: 'gatsby-source-filesystem',
options: { options: {
path: `${__dirname}/content`, path: `${__dirname}/website/content`,
name: 'content', name: 'content',
}, },
}, },
{ {
resolve: 'gatsby-source-filesystem', resolve: 'gatsby-source-filesystem',
options: { options: {
path: `${__dirname}/data`, path: `${__dirname}/website/data`,
name: 'data', name: 'data',
}, },
}, },