Experiments
Guides

Nuxt Config SEO Meta

Make use of the power of useSeoMeta inside your nuxt.config.

The useSeoMeta composable is a powerful tool for managing SEO meta tags.

This module brings the power of useSeoMeta to your nuxt.config.

To use it, simply add within the app.seoMeta config of your nuxt.config:

nuxt.config.ts
export default defineNuxtConfig({
  app: {
    head: {
      seoMeta: {
        description: 'My awesome website',
        ogImage: 'https://example.com/my-og-image.png',
        ogSiteName: 'My Site Name',
      }
    }
  }
})

The functionality is the same as the composable without reactivity. It has a higher priority than app.head.