Package Exports
- gatsby-plugin-archives
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gatsby-plugin-archives) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
gatsby-plugin-archives
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