Documentación offline Nuxt main

useServerSeoMeta

main Documentación oficial Licencia MITDescargado el 2026-08-02

::warning useServerSeoMeta is deprecated. Wrap useSeoMeta in an if (import.meta.server) block instead. The auto-import is removed under future.compatibilityVersion: 5. ::

useServerSeoMeta lets you define your site's SEO meta tags as a flat object with full TypeScript support, exactly like useSeoMeta, but it only runs server-side and is tree-shaken from the client bundle.

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

For new code, use the server-only pattern directly:

```vue [app/app.vue]

```

Parameters are exactly the same as with useSeoMeta.

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