Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
feat(gatsby-config): ignore files starting with . and /happygaia/
Browse files Browse the repository at this point in the history
ignored in development to speed up content sourcing
  • Loading branch information
CanRau committed Oct 6, 2018
1 parent c5b91b4 commit a325b75
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ module.exports = {
? path.join(__dirname, `content`)
: path.join(__dirname, `..`, `content`, `content`),
name: `content`,
ignore: isProduction ? [`**/.*`] : [`**/.*`, `**/happygaia/*`],
},
},
`gatsby-transformer-archieml`,
Expand Down

0 comments on commit a325b75

Please sign in to comment.