Skip to main content
  • Type: string[]
The crawler checks this list against page URLs using micromatch wildcard patterns. Common wildcards are:
  • * matches any characters within a single path segment (it can’t cross /).
  • ** matches across path segments (it can cross /).
  • ! creates an exception. It re-includes URLs that earlier patterns excluded (the crawler evaluates patterns in order).
You can define up to 100 patterns in exclusionPatterns.
In micromatch, some characters (for example, ?) have a special meaning. To match them as normal characters, prefix them with a backslash (for example, \?).

Example exclusion patterns

JavaScript
Last modified on May 19, 2026