Gatsby plugin for ignoring pages on build.
npm install --save gatsby-plugin-archives
// In your gatsby-config.js
module.exports = {
plugins: [
{
resolve: 'gatsby-plugin-archives',
options: {
// Match files and directories to exclude
exclude: [/archive/i],
// Only archive pages in production
productionOnly: false,
// Log when pages are archived
verbose: false,
},
},
]
}
MIT © Hutson Inc