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 Jun 18, 2024. It is now read-only.
There is a number of optimisations that can be used here.
start using Flask-Minify is probably the easiest thing that will already help
avoid downloading code in runtime from CDNs; instead download a copy upon build and bundle everything together in order to reduce number of network requests
enable data reload without restarting whole frontend
configure service worker / PWA
The text was updated successfully, but these errors were encountered:
Did you try to measure how much these steps would impact the load time?
With traditional websites minifying is great but here we have very little static resources while we load like 2MB of GeoJSON data so I'm not sure minifying 200KB of HTML, JS, CSS to 100KB will have a significant effect.
There is a number of optimisations that can be used here.
The text was updated successfully, but these errors were encountered: