You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 1, 2018. It is now read-only.
Doing a full prepare in the browser before rendering is only required due to the current way we are doing bundle split components. To get around this, we can keep track of a singleton mapping of chunkId to load functions. On pageload, we run all the load functions for chunkIds that were rendered on the server.
We can make a similar optimization for server side renders to avoid unnecessary async microtasks by loading all the promises up front.
The text was updated successfully, but these errors were encountered:
Doing a full
prepare
in the browser before rendering is only required due to the current way we are doing bundle split components. To get around this, we can keep track of a singleton mapping of chunkId to load functions. On pageload, we run all the load functions for chunkIds that were rendered on the server.We can make a similar optimization for server side renders to avoid unnecessary async microtasks by loading all the promises up front.
The text was updated successfully, but these errors were encountered: