Install Nuxt SEO · Nuxt SEO

[NuxtSEO](https://nuxtseo.com/ "Home")

- [Modules](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [Tools](https://nuxtseo.com/tools)
- [Pro](https://nuxtseo.com/pro)
- [Learn SEO](https://nuxtseo.com/learn-seo/nuxt) [Releases](https://nuxtseo.com/releases)

[1.4K](https://github.com/harlan-zw/nuxt-seo)

[Nuxt SEO on GitHub](https://github.com/harlan-zw/nuxt-seo)

[User Guides](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)

[Releases](https://nuxtseo.com/docs/nuxt-seo/releases/v5)

Nuxt SEO

- [Switch to Nuxt SEO](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [Switch to Robots](https://nuxtseo.com/docs/robots/getting-started/introduction)
- [Switch to Sitemap](https://nuxtseo.com/docs/sitemap/getting-started/introduction)
- [Switch to OG Image](https://nuxtseo.com/docs/og-image/getting-started/introduction)
- [Switch to Schema.org](https://nuxtseo.com/docs/schema-org/getting-started/introduction)
- [Switch to Link Checker](https://nuxtseo.com/docs/link-checker/getting-started/introduction)
- [Switch to SEO Utils](https://nuxtseo.com/docs/seo-utils/getting-started/introduction)
- [Switch to Site Config](https://nuxtseo.com/docs/site-config/getting-started/introduction)
- [Switch to Skew Protection](https://nuxtseo.com/docs/skew-protection/getting-started/introduction)
- [Switch to AI Ready](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

Search…```k`` /`

v5.1.3

- Playgrounds
- [Discord Support](https://discord.com/invite/275MBUBvgP)

### Getting Started

- [Introduction](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [Installation](https://nuxtseo.com/docs/nuxt-seo/getting-started/installation)
- [Troubleshooting](https://nuxtseo.com/docs/nuxt-seo/getting-started/troubleshooting)
- [Community Videos](https://nuxtseo.com/docs/nuxt-seo/getting-started/community-videos)

### Core Concepts

- [Quick Module Setup Guide](https://nuxtseo.com/docs/nuxt-seo/guides/using-the-modules)
- [Disabling Modules](https://nuxtseo.com/docs/nuxt-seo/guides/disabling-modules)
- [Nuxt Content](https://nuxtseo.com/docs/nuxt-seo/guides/nuxt-content)
- [I18n](https://nuxtseo.com/docs/nuxt-seo/guides/i18n)
- [MCP Server](https://nuxtseo.com/docs/nuxt-seo/guides/mcp)
- [LLMs.txt](https://nuxtseo.com/docs/nuxt-seo/guides/llms-txt)
- [Understanding Site Config](https://nuxtseo.com/docs/nuxt-seo/guides/site-config)
- [Debugging Modules](https://nuxtseo.com/docs/nuxt-seo/guides/debugging-modules)
- [Updating Nuxt Modules](https://nuxtseo.com/docs/nuxt-seo/guides/updating-modules)

Getting Started

# Install Nuxt SEO

[Copy for LLMs](https://nuxtseo.com/docs/nuxt-seo/getting-started/installation.md)

## [Install Nuxt SEO Alias](#install-nuxt-seo-alias)

The `@nuxtjs/seo` module is an alias module that bundles the core SEO modules into a single installation.

nuxt

npm

yarn

pnpm

bun

bash

`npx nuxt module add @nuxtjs/seo`

bash

`npm i @nuxtjs/seo`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    '@nuxtjs/seo',
  ],
})
```

bash

`yarn add @nuxtjs/seo`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    '@nuxtjs/seo',
  ],
})
```

bash

`pnpm i @nuxtjs/seo`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    '@nuxtjs/seo',
  ],
})
```

bash

`bun i @nuxtjs/seo`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    '@nuxtjs/seo',
  ],
})
```

Generate an Agent Skill for this package using [skilld](https://github.com/harlan-zw/skilld):

```
npx skilld add @nuxtjs/seo
```

### [Install Modules Individually](#install-modules-individually)

If you only need specific modules or want version pinning control, install them separately. Each module works independently and you can mix and match as needed.

`nuxt-site-config` installs automatically with any SEO module. You do not need to add it manually.

[Robots v6.0.78.9M520 Tame the robots crawling and indexing your site with ease.](https://nuxtseo.com/docs/robots/getting-started/introduction) [Sitemap v8.0.1310M427 Powerfully flexible XML Sitemaps that integrate seamlessly.](https://nuxtseo.com/docs/sitemap/getting-started/introduction) [OG Image v6.4.53.9M539 Generate OG Images with Vue templates in Nuxt.](https://nuxtseo.com/docs/og-image/getting-started/introduction) [Schema.org v6.0.44.1M185 The quickest and easiest way to build Schema.org graphs.](https://nuxtseo.com/docs/schema-org/getting-started/introduction) [Link Checker v5.0.92.9M98 Find and magically fix links that may be negatively effecting your SEO.](https://nuxtseo.com/docs/link-checker/getting-started/introduction) [SEO Utils v8.1.92.4M125 SEO utilities to improve your Nuxt sites discoverability and shareability.](https://nuxtseo.com/docs/seo-utils/getting-started/introduction) [Skew Protection v1.1.17.9K1 Solve Nuxt version skews with persistent assets and instant updates.](https://nuxtseo.com/docs/skew-protection/getting-started/introduction) [AI Ready v1.1.214K2 Best practice AI & LLM discoverability for Nuxt sites.](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

### [Standalone Modules](#standalone-modules)

These modules are not included in `@nuxtjs/seo` but can be installed alongside it or on their own.

#### [Skew Protection](#skew-protection)

Solve Nuxt version skews with persistent assets and instant updates.

nuxt

npm

yarn

pnpm

bun

bash

`npx nuxt module add nuxt-skew-protection`

bash

`npm i nuxt-skew-protection`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-skew-protection',
  ],
})
```

bash

`yarn add nuxt-skew-protection`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-skew-protection',
  ],
})
```

bash

`pnpm i nuxt-skew-protection`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-skew-protection',
  ],
})
```

bash

`bun i nuxt-skew-protection`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-skew-protection',
  ],
})
```

See the [Skew Protection docs](https://nuxtseo.com/docs/skew-protection/getting-started/introduction) for configuration options.

#### [AI Ready](#ai-ready)

Best practice AI & LLM discoverability for Nuxt sites. Generates `llms.txt`, `llms-full.txt`, and `robots.txt` AI directives.

nuxt

npm

yarn

pnpm

bun

bash

`npx nuxt module add nuxt-ai-ready`

bash

`npm i nuxt-ai-ready`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-ai-ready',
  ],
})
```

bash

`yarn add nuxt-ai-ready`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-ai-ready',
  ],
})
```

bash

`pnpm i nuxt-ai-ready`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-ai-ready',
  ],
})
```

bash

`bun i nuxt-ai-ready`

You will need to manually add the module to your Nuxt config.

nuxt.config.ts

```
export default defineNuxtConfig({
  modules: [
    'nuxt-ai-ready',
  ],
})
```

See the [AI Ready docs](https://nuxtseo.com/docs/ai-ready/getting-started/introduction) for configuration options.

## [Next Steps](#next-steps)

All modules are now installed and configured.

See the [Using the Modules](https://nuxtseo.com/docs/nuxt-seo/guides/using-the-modules) guide to learn how to use them.

### [Troubleshooting](#troubleshooting)

If you run into any issues, check out the [Troubleshooting](https://nuxtseo.com/docs/nuxt-seo/getting-started/troubleshooting) guide. Below are the [StackBlitz](https://stackblitz.com) playgrounds for Nuxt SEO:

- [Basic Setup Example](https://stackblitz.com/edit/nuxt-starter-gfrej6?file=nuxt.config.ts)
- [I18n Integration Example](https://stackblitz.com/edit/nuxt-starter-dh68fjqb?file=nuxt.config.ts)
- [Nuxt Content Integration Example](https://stackblitz.com/edit/nuxt-starter-xlkqkcqr?file=nuxt.config.ts)

[Edit this page](https://github.com/harlan-zw/nuxt-seo/edit/main/docs/content/1.getting-started/1.installation.md)

[Markdown For LLMs](https://nuxtseo.com/docs/nuxt-seo/getting-started/installation.md)

Did this page help you?

### Related

[Using the Modules](https://nuxtseo.com/docs/nuxt-seo/guides/using-the-modules) [Troubleshooting](https://nuxtseo.com/docs/nuxt-seo/getting-started/troubleshooting) [Site Config](https://nuxtseo.com/docs/nuxt-seo/guides/site-config)

[Introduction Nuxt SEO is an ecosystem of SEO modules, tools, and tutorials for Nuxt. Install modules individually or all at once with @nuxtjs/seo.](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction) [Troubleshooting Learn how to troubleshoot common Nuxt SEO issues and find helpful resources.](https://nuxtseo.com/docs/nuxt-seo/getting-started/troubleshooting)

On this page

- [Install Nuxt SEO Alias](#install-nuxt-seo-alias)
- [Next Steps](#next-steps)

[GitHub](https://github.com/harlan-zw/nuxt-seo) [ Discord](https://discord.com/invite/275MBUBvgP)

### [NuxtSEO](https://nuxtseo.com/ "Home")

- [Getting Started](https://nuxtseo.com/docs/nuxt-seo/getting-started/introduction)
- [MCP](https://nuxtseo.com/docs/nuxt-seo/guides/mcp)

Modules

- [Robots](https://nuxtseo.com/docs/robots/getting-started/introduction)
- [Sitemap](https://nuxtseo.com/docs/sitemap/getting-started/introduction)
- [OG Image](https://nuxtseo.com/docs/og-image/getting-started/introduction)
- [Schema.org](https://nuxtseo.com/docs/schema-org/getting-started/introduction)
- [Link Checker](https://nuxtseo.com/docs/link-checker/getting-started/introduction)
- [SEO Utils](https://nuxtseo.com/docs/seo-utils/getting-started/introduction)
- [Site Config](https://nuxtseo.com/docs/site-config/getting-started/introduction)
- [Skew Protection](https://nuxtseo.com/docs/skew-protection/getting-started/introduction)
- [AI Ready](https://nuxtseo.com/docs/ai-ready/getting-started/introduction)

### [NuxtSEO Pro](https://nuxtseo.com/pro "Nuxt SEO Pro")

- [Getting Started](https://nuxtseo.com/pro)
- [Dashboard](https://nuxtseo.com/pro/dashboard)
- [Pro MCP](https://nuxtseo.com/pro/docs/getting-started/mcp-setup)

### [Learn SEO](https://nuxtseo.com/learn-seo "Learn SEO")

Nuxt

- [Mastering Meta](https://nuxtseo.com/learn-seo/nuxt/mastering-meta)
- [Controlling Crawlers](https://nuxtseo.com/learn-seo/nuxt/controlling-crawlers)
- [Launch & Listen](https://nuxtseo.com/learn-seo/nuxt/launch-and-listen)
- [Routes & Rendering](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering)
- [Staying Secure](https://nuxtseo.com/learn-seo/nuxt/routes-and-rendering/security)

Vue

- [Vue SEO Guide](https://nuxtseo.com/learn-seo/vue)
- [Mastering Meta](https://nuxtseo.com/learn-seo/vue/mastering-meta)
- [Controlling Crawlers](https://nuxtseo.com/learn-seo/vue/controlling-crawlers)
- [SPA SEO](https://nuxtseo.com/learn-seo/vue/spa)
- [SSR Frameworks](https://nuxtseo.com/learn-seo/vue/ssr-frameworks)
- [SEO Checklist](https://nuxtseo.com/learn-seo/checklist)
- [Pre-Launch Warmup](https://nuxtseo.com/learn-seo/pre-launch-warmup)
- [Backlinks & Authority](https://nuxtseo.com/learn-seo/backlinks)

### [Tools](https://nuxtseo.com/tools "SEO Tools")

- [Social Share Debugger](https://nuxtseo.com/tools/social-share-debugger)
- [Robots.txt Generator](https://nuxtseo.com/tools/robots-txt-generator)
- [Meta Tag Checker](https://nuxtseo.com/tools/meta-tag-checker)
- [HTML to Markdown](https://nuxtseo.com/tools/html-to-markdown)
- [XML Sitemap Validator](https://nuxtseo.com/tools/xml-sitemap-validator)
- [Schema.org Validator](https://nuxtseo.com/tools/schema-validator)
- [Keyword Idea Generator](https://nuxtseo.com/tools/keyword-generator)
- [Keyword Research](https://nuxtseo.com/tools/keyword-research)
- [SERP Analyzer](https://nuxtseo.com/tools/serp-analyzer)
- [Domain Rankings](https://nuxtseo.com/tools/domain-rankings)

Copyright © 2023-2026 Harlan Wilton - [MIT License](https://github.com/harlan-zw/nuxt-seo/blob/main/license) · [mdream](https://mdream.dev)