nextra icon indicating copy to clipboard operation
nextra copied to clipboard

Head Tags are not working. Tried both static and dynamic tags as explained in the doc. Still no luck.

Open rohitspujari opened this issue 1 year ago • 1 comments

I'm trying customize the annotation 'Index - Nextra' to 'Index - Company', I'm unable to do with the instructions below.

https://nextra.site/docs/docs-theme/theme-configuration#dynamic-tags-based-on-page

rohitspujari avatar Feb 15 '24 04:02 rohitspujari

Try this if it work for you

export default {
  head: () => {
      ... 
    }, 
    useNextSeoProps() {
        const { frontMatter } = useConfig();
    
        const { asPath } = useRouter()
    
        if (asPath !== '/') {
            return {
                titleTemplate: '%s - Company name',
            }
        }
    },
    ... // other configs
}

}

Here is Doc https://nextra.site/docs/docs-theme/theme-configuration#seo-options

Edit: Do not forget to add title in your md/mdx file.

---
title: Page title
---

Esh07 avatar Feb 18 '24 18:02 Esh07

Beautiful. That solved it.

rohitspujari avatar Feb 19 '24 01:02 rohitspujari

Thank you

rohitspujari avatar Feb 19 '24 01:02 rohitspujari