Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control
no-cache, no-store, max-age=0, must-revalidate
Directive
Value
Meaning
no-cache
—
Cache but always revalidate first
no-store
—
Never cache this response
max-age
0
Cache for 0 seconds
must-revalidate
—
Must recheck with server after expiry
B
Page Weight Budget
1.3 MB transferred, 72 requests
REVIEW
1.3 MB transferred, 72 requests
Info::
✓
Page weighs 5.3 MB (1.3 MB transferred)
Warning::
!
JavaScript is 1005 KB — consider code splitting or lazy loading
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Got: 1005 KB
Info::
i
72 HTTP requests
Info::
i
Estimated 0.27 g CO2 per page load
1.3 MBtransferred
72 requests
0.27 g CO2 per page load
JavaScript1005.3 KiB76%
CSS179.7 KiB14%
HTML63.0 KiB5%
Fonts28.1 KiB2%
Other26.3 KiB2%
Other16.2 KiB1%
Other5.5 KiB0%
Images1.2 KiB0%
Other287 B0%
02.4 MB4.9 MB
Under budget
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Why this matters
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
C
Compression Algorithm
Action
Main response served uncompressed
REVIEW
Main response served uncompressed
Info::
i
Main HTML response has no Content-Encoding (uncompressed)
The main HTML document is served without compression. The Text Compression section above lists the broader picture; for the main response specifically, even gzip would shave ~70-80% off most text payloads.
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
i
No Server-Timing header found
Server-Timing exposes backend timing breakdowns to browser DevTools (e.g., `db: 45ms; render: 120ms; cache: 2ms`). Useful for diagnosing slow pages without backend log access. Most modern frameworks (Next.js, Cloudflare Workers, Fastly) emit it automatically; absence on a managed platform usually means telemetry headers are stripped at the edge.
B
JavaScript Blocking
2 JS blocking issue(s) detected
REVIEW
2 JS blocking issue(s) detected
Warning::
!
9 render-blocking <script src> tag(s) without async/defer
Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.
Warning::
!
Total JS execution time is 4.5 s -- over the 3.5s budget
Total JavaScript execution (parse + compile + run) across all scripts exceeds 3.5 seconds. On low-end devices that becomes 7-15+ seconds and shows up directly in TBT and INP. Reduce by: tree-shaking unused dependencies, code-splitting (dynamic `import()`), removing or deferring third-party tracking, and replacing heavy frameworks where they're not needed.
A+
Text Compression
All text resources are compressed
PASS
All text resources are compressed
Info::
✓
All text resources are compressed
All text resources are properly compressed.
A
Image Optimization
3 images, 0 KB saveable
PASS
3 images, 0 KB saveable
Info::
✓
All images are well-optimized
3images1 KB
0oversized-0 KB
2legacy format
0missing dimensionsCLS risk
A+
Font Loading
2 fonts (28 KB)
PASS
2 fonts (28 KB)
Info::
i
2 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
2
28 KB total
Render-blocking
0
of 2
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
KFOmCnqEu92Fr1Mu4mxPKTU...ttfswap
Size14 KB
Load time211 ms
Start995 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
KFOlCnqEu92Fr1MmEU9fBBc...ttfswap
Size14 KB
Load time199 ms
Start1.0 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
Optimization checklist
Preload critical fonts (priority=high)
Use woff2 format for all fonts
Set font-display to swap, optional, or fallback
Subset large fonts (≤100 KB each)
Fixing the unchecked items could save ~8 KB and ~16 ms
A+
Resource Caching
All resources properly cached
PASS
All resources properly cached
Info::
✓
No caching issues found
All static resources have appropriate caching headers.
A+
Critical Rendering Path
No render-blocking resources
PASS
No render-blocking resources
Info::
✓
No render-blocking resources detected
A+
Resource Hints
No optimization needed
PASS
No optimization needed
Info::
✓
No resource hint issues
A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
✓
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
A+
LCP Image Preload
LCP preload audit not available
PASS
LCP preload audit not available
Info::
✓
LCP image preload audit not available for this scan
A+
Main HTML Cache-Control
Main HTML uses no-store -- correct for sensitive/dynamic content
PASS
Main HTML uses no-store -- correct for sensitive/dynamic content
Info::
✓
Main HTML uses no-store -- correct for sensitive/dynamic content
The page declares a `Vary` header, telling downstream caches which request headers the response varies on. Critical for content-negotiated responses (compression, language, cookies, device class).
Info::
i
No `ETag` or `Last-Modified` -- conditional GET not supported
Without either header, browsers can't issue conditional GETs and refresh always re-downloads the full response body even when nothing changed. Add `ETag: "<hash>"` (or `Last-Modified: <date>`) on cacheable responses; the server returns 304 Not Modified when the client's cached copy is still valid, saving bandwidth.
Each `<link rel="stylesheet">` without a non-blocking `media` attribute holds up the first paint. Browsers download all of them before painting any content. Consolidate into 1-2 critical-path stylesheets; defer non-critical CSS via `<link rel="stylesheet" media="print" onload="this.media='all'">` or via the loadCSS pattern; inline above-the-fold CSS in `<style>` to short-circuit the request entirely.
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Google Cloud
Network Waterfall
72 requests over 3038ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
100%of JavaScript execution is third-party
First-party Third-party4502ms · 1058KB · $60/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
m.youtube.com
m.youtube.com
Other
2281ms
426 KB
52%
$30/mo
Costly
Unattributable
Unattributable
Other
953ms
0 KB
—
$13/mo
Costly
m.youtube.com
m.youtube.com
Other
449ms
60 KB
—
$6/mo
Costly
m.youtube.com
m.youtube.com
Other
293ms
418 KB
74%
$4/mo
Costly
m.youtube.com
m.youtube.com
Other
127ms
30 KB
87%
$2/mo
Optional
m.youtube.com
m.youtube.com
Other
126ms
19 KB
—
$2/mo
Optional
m.youtube.com
m.youtube.com
Other
107ms
80 KB
77%
$1/mo
Optional
www.google.com
www.google.com
Other
106ms
23 KB
—
$1/mo
Optional
m.youtube.com
m.youtube.com
Other
61ms
2 KB
—
$1/mo
Optional
m.youtube.com
Other
Costly
Execution2281ms
Transfer426 KB
Unused52%
Monthly Cost$30/mo
Unattributable
Other
Costly
Execution953ms
Transfer0 KB
Monthly Cost$13/mo
m.youtube.com
Other
Costly
Execution449ms
Transfer60 KB
Monthly Cost$6/mo
m.youtube.com
Other
Costly
Execution293ms
Transfer418 KB
Unused74%
Monthly Cost$4/mo
m.youtube.com
Other
Optional
Execution127ms
Transfer30 KB
Unused87%
Monthly Cost$2/mo
m.youtube.com
Other
Optional
Execution126ms
Transfer19 KB
Monthly Cost$2/mo
m.youtube.com
Other
Optional
Execution107ms
Transfer80 KB
Unused77%
Monthly Cost$1/mo
www.google.com
Other
Optional
Execution106ms
Transfer23 KB
Monthly Cost$1/mo
m.youtube.com
Other
Optional
Execution61ms
Transfer2 KB
Monthly Cost$1/mo
These scripts may cost more than they're worth
m.youtube.com adds 2281ms and costs ~$30/month
Unattributable adds 953ms and costs ~$13/month
m.youtube.com adds 449ms and costs ~$6/month
m.youtube.com adds 293ms and costs ~$4/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
Why this matters
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
m.youtube.com takes 2281ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
52% of m.youtube.com's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
Unattributable takes 953ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
m.youtube.com takes 449ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
m.youtube.com takes 293ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
Why this matters
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
74% of m.youtube.com's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
87% of m.youtube.com's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
77% of m.youtube.com's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.