Open mrvnklm opened 4 years ago
Same thing is happening on Nuxt.js SSR
Same thing is happening on Nuxt.js SSR
For Nuxt.js, my solution was to dynamically import the package only when on client mode.
for example
components: { 'text-highlight': () => { if (process.client) { return import('vue-text-highlight'); } } },
I am developing an server side rendered app (using quasar framework) which does not work with vue-text-highlight even though I exclude the component from being rendered on the server.