pespantelis / vue-videobg

:milky_way: Video Background component for Vue.js
http://pespantelis.github.io/vue-videobg
MIT License
252 stars 35 forks source link

Doesn't work with Nuxt.js ssr mode: Unexpected token < #15

Open MichaelJCole opened 6 years ago

MichaelJCole commented 6 years ago

There is a compatibility issue with Nuxt.js that I don't completely understand.

The workaround is to whitelist this component in ssr mode.

stact commented 4 years ago

@MichaelJCole you could use your plugins only on client side if you want: { src: '@/plugins/video-bg', ssr: false } (working fine on my side)

Source: https://nuxtjs.org/guide/plugins/#client-side-only

Hope it helps.