[Vuejs]-Page works when linked too, but breaks on reload

0👍

VueTyper doesn’t support SSR. There several workaround for this.

1) You can run nuxt in spa mode https://nuxtjs.org/api/configuration-mode/

2) You can use no-ssr tag https://nuxtjs.org/api/components-no-ssr/

3) You can add vueTyper as a plugin with ssr: false https://github.com/cngu/vue-typer/issues/1#issuecomment-368987826

module.exports = {
  ...
  plugins: [
    ...
    { src: 'plugins/vue-typer.js', ssr: false}
  ],
  ...
}

Maybe 2 and 3 should be used together, didn’t tested myself.

Leave a comment