Load all async-{xyz}
asynchronously instead of upfront during the boot process
#10
Labels
enhancement
New feature or request
Plotly saves on memory by lazy-loading dependencies its apps require. These generally tend to come from the
dash-core-components
distribution, and are retrieved using GET requests which Flask serves. WebDash currently loads all of them upfront during the boot process.webdash/src/webdash.ts
Lines 123 to 140 in 9857988
It would probably make more sense to stay true to the original intention and load these asynchronously whenever an app that depends on them, requests them.
The text was updated successfully, but these errors were encountered: