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 was archived by the owner on Jan 11, 2023. It is now read-only.
On navigating to /foo, the router finds the component in question and discovers that it needs to do import('./foo-xyz123.js'). On loading that module, we may discover that the chunk depends on other chunks, which must then also be loaded.
Since we know the shape of the entire tree at build time, we could figure out all the chunks foo-xyz123.js depends on, and start importing them in the background.
The text was updated successfully, but these errors were encountered:
On navigating to
/foo
, the router finds the component in question and discovers that it needs to doimport('./foo-xyz123.js')
. On loading that module, we may discover that the chunk depends on other chunks, which must then also be loaded.Since we know the shape of the entire tree at build time, we could figure out all the chunks
foo-xyz123.js
depends on, and start importing them in the background.The text was updated successfully, but these errors were encountered: