I am using Nuxt 3 and Nuxt Content for my site. I set a default page title inside the nuxt.config.ts
file (see Documentation: SEO and Meta), and the Content module sets the title on every page that uses it. However, returning to any other page does not reset the page title. It keeps the value from the last MarkDown file and does not change back to the global page title. Navigating to another MarkDown page changes the title, but it never changes back from the last value set by the module.
I also tried setting the title through the useHead composable instead of the runtime configuration, but with the same result.
Am I doing something wrong, and if so, how can I solve this? Or is this a known bug?