Loadingβ¦
Cut the number of files a page loads so it renders with fewer round-trips.
Each request has overhead. Pages that load 100+ separate files β icons, scripts, trackers β spend a lot of time just negotiating connections. Fewer, smarter requests means faster rendering, especially on mobile.
<!-- 14 separate <script> tags + 30 individual icon PNGs --><script src="/bundle.min.js" defer></script>
<svg><use href="/icons.svg#cart"></use></svg> <!-- one sprite -->Combine CSS/JS via your caching plugin and audit plugins β each one can add several requests. Deactivate what you don't use.
The bundler already combines modules per route; focus on trimming third-party scripts.
Run a free audit and get a prioritized fix list with auto-generated code.
Run a free audit