welcome to nuxt glorious

useGloriousHead

A composables for set seo and is useSeoMeta of nuxt framework.


useGloriousHead() this composables get one object parm with below interface

            
interface headInterface {
  title?: string
  description?: string
  image?: string
  type?: string
}

        

config

config for global setting , set on nuxt.config

            
glorious:{
  seo?: {
    suffix?: string
    title?: string
    description?: string
  }
}