Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nuxt 2 | ReferenceError: Node is not defined #8

Open
evgenii-code opened this issue Jun 14, 2023 · 3 comments
Open

Nuxt 2 | ReferenceError: Node is not defined #8

evgenii-code opened this issue Jun 14, 2023 · 3 comments

Comments

@evgenii-code
Copy link

Если подключать этот пакет к проекту на Nuxt 2, то приложение падает с ошибкой

ReferenceError: Node is not defined

Вот пример ошибки в песочнице:
https://codesandbox.io/p/sandbox/kinescope-nuxt-2-nv2h4w

Происходит это из-за утилиты

/@kinescope/vue-kinescope-player/src/polyfills.js

Если сбилдить пакет без этого полифила, то плеер заводится.

@moiseyev
Copy link
Contributor

Привет! Я так понимаю, что ошибка возникает из-за того, что в режиме SSR Nuxt пытается запустить код полифила, а из-за того, что в его окружение нет объекта Node получаем ошибку. Я добавил ещё одну проверку в полифил, чтобы он не выполнялся если нет Node. Проверь пожалуйста версию v1.0.4

@AleksandrKisler
Copy link

Привет, у меня не получается заставить пакетик работать в NuxtSSR можно попробовать другую реализацию полифила

// Polyfill for replaceChildren if (!Node.prototype.replaceChildren) { Node.prototype.replaceChildren = function addChilds (addNodes) { while (this.lastChild) { this.removeChild(this.lastChild) } if (addNodes !== undefined) { Array.prototype.forEach.call(addNodes, node => this.appendChild(node)) } } }

@nikitosss
Copy link

Решение проблемы для всех фреймворков реализующих SSR #11

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants