Consider code splitting or tree shaking to reduce unused code.
Why this matters
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
Why this matters
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
B
HTTP/3 (QUIC)
HTTP/3 not advertised
REVIEW
HTTP/3 not advertised
Info::
i
HTTP/3 (QUIC) is not advertised
HTTP/3 isn't advertised via Alt-Svc and the worker didn't negotiate h3. HTTP/3 reduces handshake latency (1-RTT instead of 2-3 RTTs) and is more resilient on lossy connections. Most modern CDNs (Cloudflare, Fastly, AWS CloudFront, Google Cloud CDN) support HTTP/3 with a single config switch -- consider enabling for mobile-heavy workloads.
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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW
Green Hosting
No green hosting detected
A+
Page Weight Budget
391 KB transferred, 31 requests
PASS
391 KB transferred, 31 requests
Info::
✓
Page weighs 1.0 MB (391 KB transferred)
Info::
✓
31 HTTP requests
Info::
i
Estimated 0.08 g CO2 per page load
391 KBtransferred
31 requests
0.08 g CO2 per page load
JavaScript230.5 KiB59%
Fonts128.3 KiB33%
HTML18.5 KiB5%
CSS10.8 KiB3%
Other2.6 KiB1%
Other733 B0%
Images0 B0%
02.4 MB4.9 MB
Under budget
A+
Third-Party Impact
0% third-party, 0 ms blocking
PASS
0% third-party, 0 ms blocking
Info::
i
Third-party code accounts for 0% of page weight (337 B of 391.3 KiB)
Info::
✓
Third-party blocking time is low (0 ms)
100%
First-party Third-party
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
1 images, 0 KB saveable
PASS
1 images, 0 KB saveable
Info::
✓
All images are well-optimized
1images0 KB
0oversized-0 KB
0legacy format
0missing dimensionsCLS risk
A+
Font Loading
4 fonts (128 KB)
PASS
4 fonts (128 KB)
Info::
i
4 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
4
128 KB total
Render-blocking
0
of 4
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
space-grotesk-latin-700...woff2swap
Size13 KB
Load time28 ms
Start401 ms
RiskFOUT — text flashes from fallback to web font
inter-latin-standard-no...woff2swap
Size72 KB
Load time144 ms
Start402 ms
RiskFOUT — text flashes from fallback to web font
jetbrains-mono-latin-40...woff2swap
Size21 KB
Load time27 ms
Start402 ms
RiskFOUT — text flashes from fallback to web font
fraunces-latin-500-ital...woff2swap
Size23 KB
Load time27 ms
Start402 ms
RiskFOUT — text flashes from fallback to web font
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)
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
1 hints, 0 missing preconnects
PASS
1 hints, 0 missing preconnects
Info::
✓
Page uses 1 resource hint(s)
Current Resource Hints
preconnect—
preload
1
dns-prefetch—
prefetch—
1 resource hints configured
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
Got: private, no-store, max-age=0
A+
Server Response Intelligence
1 server-response signal(s) detected
PASS
1 server-response signal(s) detected
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.
1 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.
A+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
✓
No CSS performance depth issues detected
Network Waterfall
31 requests over 1596ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Image Optimization
9 images, 0 KB total, 0 KB wasted
INFO
Image Optimization Audit
Total Images
9
Total Size
0 KB
9 missing dimensions9 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.