Static GitHub Issues

[1644] Meta not being updated on route change

prev: Nuxt Js while refreshing date picker is not working([vue-router] Failed to resolve async component default: SyntaxError: Unexpected token <)
next: How to get a vuex instance in the axios of plugins, I want to implement an interceptor to add public parameters but not to store,

I'm having an issue when I navigate to another page: the meta tags are not getting updated correctly, only the title gets updated. The rest of the tags just disappear.

about.vue (simplified)

export default {
  head () {
    return {
      title: 'This is the about page',
      meta: [
        { hid: 'og-title', property: 'og-title', content: 'About page description for og' },
      ]
    }
  }
}

The tags are visible on the first load, but then if I go to another page and come back, the tags won't be shown. URL: https://dist-zetwcskggm.now.sh/about - am I doing something wrong?

<!--cmty--><!--cmty_prevent_hook--><div align="right"><sub><em>This question is available on <a href="https://nuxtjs.cmty.io">Nuxt.js</a> community (<a href="https://nuxtjs.cmty.io/nuxt/nuxt.js/issues/c1475">#c1475</a>)</em></sub></div>