Skip to content
This repository was archived by the owner on Jan 1, 2023. It is now read-only.

Plugin options

Tyler Barnes edited this page Jan 5, 2019 · 1 revision

ignorePaths

This prevents gatsby from building paths that match a specific regex.

{
  resolve: 'gatsby-plugin-wordsby',
  options: {
    ignorePaths: [
      'annoying_post_type/*', 
      'weird_internal_page/*'
    ]
  }
}
Clone this wiki locally