JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 35
  • Score
    100M100P100Q53373F
  • License MIT

Gatsby plugin for ignoring files and directories on build.

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

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