Performance guidance from real scan results.

Speed, Core Web Vitals, caching, compression, and page-weight decisions.

Guide Feb 23, 2026

Browser Caching Headers Missing or Too Short

Google recommends a minimum cache lifetime of 30 days for all cacheable subresources, with one week as the absolute minimum and one year recommended for static assets (Chrome DevTools Lighthouse). Without caching headers, every return visit downloads your CSS, JavaScript, images, and fonts from scratch — wasting bandwidth and making your site feel slow for your most engaged users.

Open guide
Guide Feb 23, 2026

CSS and JavaScript Not Minified

Minification strips whitespace, comments, and unnecessary characters from code without changing functionality — typically saving 20-30% on file size. Every visitor downloads your development comments and formatting. Build tools like Terser (JS) and cssnano (CSS) handle this automatically, and most CDNs offer it as a toggle.

Open guide
Guide Feb 23, 2026

Core Web Vitals Failing — LCP, INP, or CLS Issues

Google officially confirmed on March 12, 2024 that Core Web Vitals are used as a ranking factor (Google Search Central). After the March 2024 core update, sites with poor CWV experienced 20-40% traffic drops while those that improved saw 15-30% gains (BrightVessel). Pages at position 1 are 10% more likely to pass CWV than pages at position 9 (BKND).

Open guide
Guide Feb 23, 2026

Page Too Heavy — Estimated Load Time Too High

Bounce probability increases 32% when page load time goes from 1 to 3 seconds, and 123% at 10 seconds (Google/Huckabuy). Conversion rates drop by 4.42% for each additional second of load time (WP Rocket). The average page loads in 2.5s on desktop but 8.6s on mobile (ToolTester, 2026) — meaning mobile users are already at the edge of abandonment before your page finishes.

Open guide
Guide Feb 23, 2026

Gzip or Brotli Compression Not Enabled

Brotli compression reduces file sizes by up to 70% (vs Gzip's 65%), with Akamai reporting median savings of 82% for Brotli (DebugBear). Switching from Gzip to Brotli alone improves First Contentful Paint by approximately 3.5% (WP Rocket). Enabling compression is typically a single server configuration change that instantly benefits every visitor.

Open guide
Guide Feb 23, 2026

HTML Document Load Time - Practical Fix Guide

This check measures how long the initial HTML document request takes. It is your baseline "first response" signal before all scripts, images, and secondary resources finish load...

Open guide
Guide Feb 23, 2026

Images Not Optimised — Wrong Format or Oversized

Images comprise 21% of total webpage weight on average, with pages loading 4.4MB of image data (HTTP Archive, 2024). Only 30% of images are served in WebP format despite 97% browser support (W3Techs, 2026) — meaning most sites are still serving larger JPEG/PNG files when a smaller, identical-quality alternative exists. Switching to WebP typically cuts image bytes by 30-50%.

Open guide
Guide Feb 23, 2026

Total Image Weight Exceeds Performance Budget

Images account for the largest portion of page weight on most sites — averaging 4.4MB per page (HTTP Archive, 2024). When total image bytes blow past your budget, mobile users on metered connections pay real money for your bloat, and everyone gets a slower experience. Performance budgets exist to catch this drift before it compounds.

Open guide
Guide Feb 23, 2026

Too Many Render-Blocking CSS and JS Resources

Render-blocking resources are the most common cause of poor First Contentful Paint — only 68% of desktop pages and 51% of mobile pages achieve good FCP scores (Shopify Performance, 2024). Each render-blocking resource forces the browser to download and process it before painting any content. Inlining critical CSS and deferring non-critical scripts can make content appear seconds faster.

Open guide
Guide Feb 23, 2026

Server Response Time (TTFB) Too Slow

Google recommends a TTFB of 0.8 seconds or less, with 200ms as the ideal target (Seobility/Google). An analysis of 143,827 URLs found that TTFB was the strongest speed-related correlation with rankings (Neil Patel). TTFB is the foundation — no amount of frontend optimisation can overcome a slow server. Common causes: unoptimised database queries, no page caching, or inadequate hosting.

Open guide