---
title: "Exclude Pages · Nuxt Link Checker · Nuxt SEO"
canonical_url: "https://nuxtseo.com/docs/link-checker/guides/exclude-pages"
last_updated: "2026-08-16T09:50:35.651Z"
meta:
  description: "Exclude entire pages from link checking."
  "og:description": "Exclude entire pages from link checking."
  "og:title": "Exclude Pages · Nuxt Link Checker · Nuxt SEO"
---

Nuxt SEO on GitHub

Switch to Link CheckerSwitch to Nuxt SEOSwitch to RobotsSwitch to SitemapSwitch to OG ImageSwitch to Schema.orgSwitch to SEO UtilsSwitch to Site ConfigSwitch to Skew ProtectionSwitch to AI Ready

**Core Concepts**

# **Exclude Pages**

Exclude pages from link checking using the `**excludePages**` option. When a page matches, none of its links will be inspected.

This is useful when a page renders many external links you don't control or when an entire section of your site should be skipped.

## Usage

nuxt.config.ts

```ts
export default defineNuxtConfig({
  linkChecker: {
    excludePages: [
      '/external-links', // Exact match
      '/embed/**', // All embed routes
      /^\/generated\//, // RegExp pattern
    ],
  },
})
```

This option supports the same pattern types as [`**excludeLinks**`](https://nuxtseo.com/docs/link-checker/guides/exclude-links): exact strings, wildcards, and RegExp.

## Difference from excludeLinks

| **Option** | **Effect** |
| --- | --- |
| `**excludeLinks**` | Skips specific link URLs from being checked on **any** page |
| `**excludePages**` | Skips **all** link checking on matched pages |

**Was this page helpful?**

### **Related **

[**Exclude Links**](https://nuxtseo.com/docs/link-checker/guides/exclude-links)

[**Inspection Rules**](https://nuxtseo.com/docs/link-checker/guides/rules)

[**Disabling Modules**](https://nuxtseo.com/docs/nuxt-seo/guides/disabling-modules)

[**Exclude Links** Exclude links from being checked by the Nuxt Link Checker.](https://nuxtseo.com/docs/link-checker/guides/exclude-links) [**Generate Reports** See your link checker results when you build.](https://nuxtseo.com/docs/link-checker/guides/generating-reports)