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
To use it, simply add within the
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
Did this page help you?