Default Module Features

A quick guide on which features are available on activating Nuxt SEO.

Sitemap

Sitemap v6.1.5
1.3M
332
Powerfully flexible XML Sitemaps that integrate seamlessly.

Generates a sitemap at /sitemap.xml based on your app data sources.

  • When prerendering or using static only routes, no config is needed, it will automatically generate a sitemap for you.
  • If you have dynamic routes, you'll need to set up a handler for Dynamic URLs.

I18n Features

The sitemap module will automatically generate a multi sitemap with each locale having its own sitemap.

See I18n Sitemap for more information.

Robots

Robots v4.1.11
1M
422
Tame the robots crawling and indexing your site with ease.

Generates a robots.txt at /robots.txt.

Will append a <meta name="robots" content="<rule>"> and a X-Robots HTTP header.

  • If you have any other environments besides development and production, you need to configure the env option. See the Disabling Indexing guide for more information.
  • By default, all routes are allowed for all user-agents. See Disabling Page Indexing to start blocking routes.

I18n Features

Any Disallow rules in the robots module will automatically have the locale prefixes added.

See I18n Robots for more information.

OG Image

OG Image v3.0.7
346K
410
Generate OG Images with Vue templates in Nuxt.

Generate dynamic Open Graph images for your pages.

Note: If you don't intend to generate dynamic images, it's recommended to disable this module.

Schema.org

Schema.org v3.4.1
405K
149
The quickest and easiest way to build Schema.org graphs.

Automatically generates schema.org JSON-LD for your pages.

Link Checker v3.1.3
286K
88
Find and magically fix links that may be negatively effecting your SEO.

Checks all links for issues that may be affecting your SEO.

  • When building your site it will check links
  • You can also run it manually by opening the "Link Checker" tab in Nuxt DevTools

SEO Utils

SEO Utils v5.0.2
588
78
SEO utilities to improve your Nuxt sites discoverability and shareability.

A few extra SEO Nuxt features that don't fit anywhere else.

Shared Configuration

Site Config v2.2.21
1.1M
65
Powerful build and runtime shared site configuration for Nuxt modules.

Nuxt Site Config allows you to configure all Nuxt SEO modules at build time and runtime. Allowing you to powerfully configure all modules at runtime, for example in a multi-tenant or i18n app.

It's recommended to set the following config:

  • url - The canonical URL of your site, avoids duplicate content and consolidates page rank.
  • name - The name of your site, used in the title and meta tags.
  • description - The description of your site, used in the meta tags.
  • defaultLocale - The default locale of your site, used in the meta tags. (you can omit this if you're using @nuxtjs/i18n)
nuxt.config.ts
export default defineNuxtConfig({
  site: {
    url: 'https://example.com',
    name: 'Awesome Site',
    description: 'Welcome to my awesome site!',
    defaultLocale: 'en', // not needed if you have @nuxtjs/i18n installed
  }
})

I18n Features

You can dynamically set the site config based on the current locale.

This is useful for setting the url and name properties based on the page the user is currently on.

See I18n Site Config for more information.

Did this page help you?