惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
Engineering at Meta
Engineering at Meta
I
InfoQ
T
Tailwind CSS Blog
N
Netflix TechBlog - Medium
S
SegmentFault 最新的问题
H
Help Net Security
博客园 - 【当耐特】
WordPress大学
WordPress大学
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
腾讯CDC
雷峰网
雷峰网
Martin Fowler
Martin Fowler
The GitHub Blog
The GitHub Blog
D
Docker

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
How I Built a Website Audit Tool That Found 50+ Performan...
Christopher Welsh · 2026-06-03 · via DEV Community

Christopher Welsh

Why a "Good" Lighthouse Score is Lying to You: A 53-Point Wake-Up Call

A few weeks ago, a client came to WL Tech saying their site "felt slow." They had already done everything "by the book": optimized their images, installed a premium caching plugin, and run a standard Lighthouse test. The score came back at 72 as the saying goes, "not great, not terrible."

But when I ran my full audit stack on it, I uncovered 53 separate performance and SEO issues that their previous checks completely missed.

Here is exactly what standard automated tools miss, and how to actually find them.


1. Third-Party Script Bloat (17 scripts, 4 critical)

The client had a massive stack of plugins and third-party tools running in the background: analytics, chat widgets, and tracking pixels. Five of them were loading render-blocking scripts on every single page — including text-only pages like their privacy policy and terms of service.

  • The Fix: I implemented strategic resource hinting (async, defer, preconnect) and deferred non-critical scripts until well after DOMContentLoaded.
  • The Result: Largest Contentful Paint (LCP) dropped by 1.8 seconds.

2. Image srcset Gaps (12 instances)

Their images were technically "optimised," and they even used srcset. The problem? The breakpoints were desktop-first. On mobile devices, the browser was forced to download images four times wider than the actual layout container.

  • The Fix: Rewrote the sizes attribute to accurately match their mobile CSS layout.
  • The Result: Total page weight dropped by 40%.

3. Core Web Vitals Gaps That Lighthouse Ignores

Lighthouse flagged the obvious metrics like LCP and CLS, but it completely ignored the silent killers:

  • INP (Interaction to Next Paint): Their primary CTA button took a massive 680ms to respond. It felt sluggish to users, but Lighthouse didn't flag it as "poor."
  • TTFB (Time to First Byte): It took 1.2 seconds just to get the first byte back, despite being on a "fast" hosting plan. The culprit? A blocking API call firing in their theme before anything could render.
  • Unused CSS: A massive 180KB framework was loading on every page. Only 23KB of it was actually being utilised.

4. SEO Issues Masquerading as Performance

Their product and local business schema markup was broken. Google couldn't parse critical data like price, availability, or service areas. While this isn't technically a "performance" metric in a speed test, it directly impacts how fast they acquire customers through organic search.


The Ultimate Fix

Instead of a generic automated printout, I delivered a comprehensive Developer Report—a 12-page breakdown mapping out every single issue, its exact business impact, and the precise fix required.

Their developer implemented the top 5 highest-impact issues over a single weekend.

The ultimate payoff? Their mobile score jumped from 72 → 94.


Building This at Scale

To make this a sustainable business model without spending hours manually auditing every single site, I built a dedicated backend infrastructure:

  • An Automated Audit Pipeline: A multi-tool stack combining Lighthouse, WebPageTest, and custom scrapers.
  • A Tokenized Report System: Dynamically generates these high-value Developer Reports in about 15 minutes.
  • A Flat-Rate Pricing Model: No messy discovery calls or hidden fees. Just $150 for the comprehensive report, or $250 for a Quick Fix on the top 3 critical issues.

No monthly retainers. No contract lock-ins. Just raw data and the exact fixes you need.


Want to see what you're missing? If you're a developer auditing client sites, or a small business owner curious about your actual performance, run your site through the free audit tool at wltech.pro to see what standard tools are hiding from you.


Christopher Welsh runs WL Tech—specialising in website performance and technical SEO for small businesses. Based in the Scottish Borders, serving the UK, EU, US, and international clients.