Back to Nuxt

useServerSeoMeta

docs/4.api/2.composables/use-server-seo-meta.md

4.4.4792 B
Original Source

Just like useSeoMeta, useServerSeoMeta composable lets you define your site's SEO meta tags as a flat object with full TypeScript support.

:read-more{to="/docs/4.x/api/composables/use-seo-meta"}

In most instances, the meta doesn't need to be reactive as robots will only scan the initial load. So we recommend using useServerSeoMeta as a performance-focused utility that will not do anything (or return a head object) on the client.

vue
<script setup lang="ts">
useServerSeoMeta({
  robots: 'index, follow',
})
</script>

Parameters are exactly the same as with useSeoMeta

:read-more{to="/docs/4.x/getting-started/seo-meta"}