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.

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",
  ];
}
I