More Premium Hugo Themes Premium Nuxt Themes

Nuxt Seo Utils

SEO utilities to improve your Nuxt sites discoverability and shareability.

Nuxt Seo Utils

SEO utilities to improve your Nuxt sites discoverability and shareability.

Author Avatar Theme by harlan-zw
Github Stars Github Stars: 120
Last Commit Last Commit: Jan 5, 2026 -
First Commit Created: Dec 18, 2023 -
Nuxt Seo Utils screenshot

Overview:

The Nuxt SEO Experiments is a plugin for Nuxt.js that allows developers to easily manage SEO metadata for their applications. It provides a convenient way to define SEO meta information in the nuxt.config file and automatically adds meta tags to the HTML based on page titles and descriptions. Additionally, it corrects tags that need to be absolute, such as og:image. This plugin simplifies the process of managing SEO meta data, making it easier for developers to optimize their applications for search engines.

Features:

  • Next.js inspired Metadata Files: The plugin allows developers to define SEO meta information using metadata files, similar to how it is done in Next.js applications.
  • Use SEO meta in your nuxt.config: Developers can define SEO meta information directly in the nuxt.config file using the app.seoMeta property.
  • Route rules: The plugin provides the ability to define route rules for SEO meta information, allowing for more granular control over the meta tags for different pages.
  • Adds meta tags based on page title and description: The plugin automatically generates and adds meta tags, such as og:title and og:description, based on the page’s title and description.
  • Corrects absolute tags: The plugin handles the correction of tags that need to be absolute, such as og:image. This ensures that the meta tags are rendered correctly in the HTML.
  • Site config template params: Developers can use template parameters in the site config to dynamically generate meta tags. For example, using useHead({ title: ‘%site.title’ }) allows the page title to be generated dynamically based on the site title.

Installation:

To use the Nuxt SEO Experiments plugin in your project, follow these steps:

  1. Install the nuxt-seo-experiments dependency in your project:
npm install nuxt-seo-experiments
  1. Add it to the modules section in your nuxt.config file:
modules: [
  'nuxt-seo-experiments',
]
  1. That’s it! You can now start using the plugin to manage SEO meta information in your application.

For more details and advanced usage, refer to the full documentation.

Summary:

The Nuxt SEO Experiments plugin is a helpful tool for developers who want to easily manage SEO meta information in their Nuxt.js applications. It provides a simplified way to define SEO meta information using metadata files or directly in the nuxt.config file. The plugin automatically adds meta tags based on page titles and descriptions, and also handles the correction of absolute tags. With the ability to define route rules and use template parameters, developers have more flexibility and control over the SEO meta information for their application. Overall, the Nuxt SEO Experiments plugin simplifies the process of optimizing applications for search engines and improves SEO capabilities.