Total Blocking Time (TBT) is too high: what it is, why it matters, and how to fix it
Total Blocking Time sums how long the main thread was blocked by long tasks during load, preventing the page from responding to input. It is Lighthouse's lab proxy for responsiveness. Good is 200 ms or under; over 600 ms is poor.
Where this fits: performance in SEO
Why total blocking time (tbt) is too high hurts your rankings
TBT correlates strongly with a poor real-user INP, so it is an early warning that heavy JavaScript is freezing the page while it loads. During that window, taps and clicks are silently ignored, which users experience as the page being stuck.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Reduce and split JavaScript: code-split large bundles, remove unused code, defer non-critical and third-party scripts, and minimise work done during load. Prefer server-rendered HTML over hydration-heavy client rendering, and break long tasks into smaller chunks that yield to the main thread.
Frequently asked questions
What does "Total Blocking Time (TBT) is too high" mean?
Total Blocking Time sums how long the main thread was blocked by long tasks during load, preventing the page from responding to input. It is Lighthouse's lab proxy for responsiveness. Good is 200 ms or under; over 600 ms is poor.
Why does total blocking time (tbt) is too high matter for SEO?
TBT correlates strongly with a poor real-user INP, so it is an early warning that heavy JavaScript is freezing the page while it loads. During that window, taps and clicks are silently ignored, which users experience as the page being stuck.
How do I fix total blocking time (tbt) is too high?
Reduce and split JavaScript: code-split large bundles, remove unused code, defer non-critical and third-party scripts, and minimise work done during load. Prefer server-rendered HTML over hydration-heavy client rendering, and break long tasks into smaller chunks that yield to the main thread.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the performance family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects total blocking time (tbt) is too high on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by total blocking time (tbt) is too high, and hands you a ready-made fix task.
Check my site free