JavaScript file too large
Shipping too much JavaScript is one of the most common causes of slow pages and poor responsiveness.
What it is
This check flags scripts whose transferred size exceeds a healthy budget, often a single monolithic bundle.
Why it matters for SEO
Large bundles delay parsing and execution, hurting Interaction to Next Paint and Largest Contentful Paint.
Example
bundle.js - 1.8 MB transferred
How to fix
- Code-split and lazy-load non-critical scripts.
- Tree-shake unused code and drop heavy dependencies.
- Minify and serve compressed (brotli/gzip) bundles.
- Re-crawl to confirm script weight dropped.