Skip to content

Make Svelte's <Deferred> not crash in an SSR environment #2396

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dkulchenko
Copy link

The Deferred Svelte component calls window.queueMicrotask. In SSR, window is unavailable, leading to SSR throwing:

ReferenceError: window is not defined

In SSR, <Deferred> props don't need to be rendered at all by definition, so the component should check if window is available before scheduling the microtask.

The <Deferred> component accesses `window`, which breaks SSR rendering of any pages that have <Deferred> components on them.
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

Successfully merging this pull request may close these issues.

1 participant