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

# ignoreNoFollowTo

> Whether to follow links with the nofollow tag.

* **Type**: `boolean`
* **Default**: `false`

By default, the Crawler doesn't extract links from pages with the [`robots`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/meta/name#Other_metadata_names)
meta tag set to `nofollow` or `none`. It also ignores links with the `rel` attribute set to `nofollow`.

If `ignoreNoFollowTo` is true, the Crawler ignores any `nofollow` directives.

<Info>
  Links that don't match any pattern in your configuration are always ignored.
</Info>

## Examples

```js JavaScript icon=code theme={"system"}
{
  ignoreNoFollowTo: true,
}
```
