> ## Documentation Index
> Fetch the complete documentation index at: https://algolia.com/llms.txt
> Use this file to discover all available pages before exploring further.

# discoveryPatterns

> Patterns for additional web pages to visit for finding links.

* **Type**: `string[]`

When visiting a web page, the Crawler looks for these URLs using the [`micromatch`](https://github.com/micromatch/micromatch) library,
and adds all matches to the queue.
You can use negations, wildcards, and more.

This is useful when you want to visit pages that contain links to pages to extract,
but you don't want to extract records from these intermediate pages.

## Examples

```js JavaScript icon=code theme={"system"}
{
  discoveryPatterns: ["https://*.algolia.com/**"],
}
```
