nextra
nextra copied to clipboard
Head Tags are not working. Tried both static and dynamic tags as explained in the doc. Still no luck.
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
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
---
Beautiful. That solved it.
Thank you