nuxt / content

The file-based CMS for your Nuxt application, powered by Markdown and Vue components.
https://content.nuxt.com
MIT License
3.08k stars 624 forks source link

Page title suffix with document title #2466

Closed avi-agg closed 9 months ago

avi-agg commented 9 months ago

How can I suffix my website name on the page title with doc title?

AssetCEO commented 9 months ago

In app.vue:

<script setup>
useHead({
  titleTemplate: (titleChunk) => {
    return titleChunk ? `${titleChunk} - Site Title` : 'Site Title';
  }
})
</script>

You can find more details in this official document: SEO and Meta

avi-agg commented 9 months ago

Thanks a lot!