When I installed shaka player in Nuxt and mode: universal
, I received this error:
In spa
mode shaka is working but in universal
it doesn't work.
Thanks to the answer, the issue was solved with the following:
if (process.client) {
window.shaka = require('shaka-player/dist/shaka-player.compiled.js')
require('shaka-player/dist/shaka-player.ui')
}