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
Exokit hasn't supported (or really needed to support) parallelized dom load so far, but we've been seeing some timeout issues when resources like images and scripts load too slowly (serially) on the initial dom bootstrap.
This issue is to track adding support for parallel "running" of the html on load. This seems pretty simple; I think we just need to keep a refcount of the number of resources being loaded in parallel so we know when to emit DOMContentLoaded.
Note that things other than the initial dom load are already parallelized by node's I/O. This is just about the initial load.
The text was updated successfully, but these errors were encountered:
Exokit hasn't supported (or really needed to support) parallelized dom load so far, but we've been seeing some timeout issues when resources like images and scripts load too slowly (serially) on the initial dom bootstrap.
This issue is to track adding support for parallel "running" of the html on load. This seems pretty simple; I think we just need to keep a refcount of the number of resources being loaded in parallel so we know when to emit
DOMContentLoaded
.Note that things other than the initial dom load are already parallelized by
node
's I/O. This is just about the initial load.The text was updated successfully, but these errors were encountered: