P2 · MediumPerformance
Render-blocking JS
Scripts blocking page render
Code: render_blocking_js
Why it matters
Scripts blocking page render. Slow experiences increase bounce rates and hurt Core Web Vitals scores. Google uses these metrics as a direct ranking signal.
How to fix
Defer non-critical scripts
html<!-- Before -->
<script src="/heavy-script.js"></script>
<!-- After -->
<script src="/heavy-script.js" defer></script>Related checks in Performance
Run a free scan to check your site
Get a complete audit in under 2 minutes. No account required.
Start Free Scan