Skip to main content
  • Type: string[]
This list is checked against the URL of web pages using the micromatch library. You can use negation, wildcards, and more. You can have up to 100 patterns in the exclusionPatterns list.

Examples

JavaScript
{
  exclusionPatterns: [
    // Exclude all `/about` pages are except the `/about/ny` one.
    "http://www.google.com/about/**",
    "!http://www.google.com/about/ny",
    // Exclude all pages ending with `.html`
    "**.html",
  ];
}
Last modified on February 6, 2026