Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

ContactSign Up
Community Plugin
View plugin on GitHub

gatsby-plugin-archives

Current npm package version

Gatsby plugin for ignoring pages on build.

Installation

npm install --save gatsby-plugin-archives

Usage

// 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,
      },
    },
  ]
}

License

MIT © Hutson Inc

© 2023 Gatsby, Inc.