Heavy page: when weight slows your visitors down
In brief
A heavy page is over the Lighthouse weight threshold (around 1.6 MB, excessive beyond 5 MB) and loads slowly, especially on mobile. This is ongoing groundwork, not an emergency: compress images and trim the embedded JavaScript.
What is it?
The page exceeds 1.6 MB (Lighthouse threshold), excessive beyond 5 MB.
Why it hurts SEO and AI
Weight hits your mobile visitors and bounce rate first; the SEO effect works through experience (Core Web Vitals), not a direct penalty. Treat it as ongoing groundwork, not an emergency.
When it is NOT a problem
- The page serves an inherently large media (video, heavy visualization) and the weight is justified by its function.
- Your visitors are mostly on fast connections and desktop, where weight is felt far less.
- It is a rarely visited or non-indexed page: other, more strategic pages deserve the effort first.
<!-- Three product images served at full resolution -->
<img src="/p1.jpg"><img src="/p2.jpg"><img src="/p3.jpg">
<!-- Total images: ~6 MB --><!-- Images compressed, sized and loaded on demand -->
<img src="/p1.webp" width="600" height="600" loading="lazy">
<img src="/p2.webp" width="600" height="600" loading="lazy">
<img src="/p3.webp" width="600" height="600" loading="lazy">
<!-- Total images: ~350 KB -->Images are almost always the biggest item; modern formats and lazy-loading are often enough to get under the threshold.
How to fix it
- Look at the weight breakdown to find the dominant item (most often images, sometimes JavaScript).
- Convert images to modern formats (WebP/AVIF), size them to their display dimensions and enable lazy-loading.
- Trim the JavaScript: remove useless dependencies, minify and defer anything not critical to the first render.
- Re-crawl the page to confirm the total weight is back under the recommended threshold.
This scan checks technical compliance: viewport, charset, HTTPS, hreflang
Is this issue on your site?
Are your pages too heavy for your mobile visitors? Enter a URL: Seogard measures the real page weight and details its breakdown, image by image. Free, no credit card.
- No credit card
- Result in ~30 s
What you get back
Faster pages for real visitors — the metric that comes before all the others.
Seogard catches this regression automatically — through its continuous SEO monitoring.
Frequently asked questions
Does Google penalize a heavy page?
Not directly: Google does not penalize high weight as such. The effect works through speed and Core Web Vitals, which shape the experience and, at the margin, ranking.
What is the biggest lever to lighten a page?
Almost always images: compressing them to WebP/AVIF, sizing them to their display size and lazy-loading them cuts weight faster than any other change.
Updated July 10, 2026