Getting Started

Nuxt SEO

Last updated by Harlan Wilton in chore: drop monorepo docs.

Nuxt SEO gives you sitemaps, robots.txt, meta tags, Schema.org, and OG images in one install. Zero config, sensible defaults.

npx nuxi module add @nuxtjs/seo

New to SEO? See the Nuxt SEO Guide first.

Modules Included

Install all at once with @nuxtjs/seo, or pick individual modules.

Features

  • Zero config — sensible defaults out of the box
  • Modules work together — Site Config shares URL, name, and metadata across all modules
  • DevTools integration — debug and preview SEO output
  • I18n ready — full multilingual support with Nuxt I18n
  • Edge compatible — Vercel, Netlify, Cloudflare, and more

Site Config

All modules need your site URL for canonical links and sitemaps. Set it once:

export default defineNuxtConfig({
  site: {
    url: 'https://example.com',
    name: 'My Site'
  }
})

Every module uses these values. No duplication.

Site Config v3.2.14
8.9M
75
Powerful build and runtime shared site configuration for Nuxt modules.
Did this page help you?