Skip to content

hutsoninc/gatsby-plugin-archives

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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