Browsers will use heuristic caching, which can be unpredictable. Set explicit cache headers.
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
B
Image Optimization
17 images, 0 KB saveable
REVIEW
17 images, 0 KB saveable
Info::
✓
All images are well-optimized
17images2.4 MB
0oversized-0 KB
9legacy format
0missing dimensionsCLS risk
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.
B
Main HTML Cache-Control
No Cache-Control header on main HTML response
REVIEW
No Cache-Control header on main HTML response
Info::
i
Main HTML response has no Cache-Control header
Without an explicit Cache-Control, browsers fall back to heuristic caching (~10% of Last-Modified age). Set `Cache-Control: no-cache` or `max-age=300` for HTML to control freshness explicitly -- prevents stale auth state and SPA shell drift.
B
JavaScript Blocking
2 JS blocking issue(s) detected
REVIEW
2 JS blocking issue(s) detected
Warning::
!
4 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.7 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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW
Green Hosting
No green hosting detected
A
Third-Party Impact
36% third-party, 0 ms blocking
PASS
36% third-party, 0 ms blocking
Info::
i
Third-party code accounts for 36% of page weight (1.4 MiB of 3.9 MiB)
Info::
✓
Third-party blocking time is low (0 ms)
64%
36%
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+
Font Loading
5 fonts (549 KB)
PASS
5 fonts (549 KB)
Info::
i
5 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
5
549 KB total
Render-blocking
0
of 5
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
cousine_normal_400.ttfttfswap
Size163 KB
Load time35 ms
Start626 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
pixeloid-sans_normal_70...otfswap
Size37 KB
Load time35 ms
Start626 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
cousine_italic_400.ttfttfswap
Size151 KB
Load time45 ms
Start627 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
pixeloid-sans_normal_40...otfswap
Size40 KB
Load time43 ms
Start627 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
cousine_normal_700.ttfttfswap
Size158 KB
Load time12 ms
Start689 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
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 ~401 KB and ~802 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
6 hints, 0 missing preconnects
PASS
6 hints, 0 missing preconnects
Info::
✓
Page uses 6 resource hint(s)
Current Resource Hints
preconnect—
preload
4
dns-prefetch
2
prefetch—
6 resource hints configured
A+
Compression Algorithm
Main response uses brotli
PASS
Main response uses brotli
Info::
✓
Main HTML response uses brotli (Content-Encoding: br)
Brotli is the best text-compression algorithm for general use, ~20% smaller than gzip on average (40% on smaller files). Modern browsers all support it.
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+
Server-Timing Observability
3 Server-Timing entries advertised
PASS
3 Server-Timing entries advertised
Info::
✓
Server-Timing header advertises 3 timing entries
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
✓
`Vary` header declared: Accept-Encoding
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.
Network Waterfall
74 requests over 2081ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
53%of JavaScript execution is third-party
First-party Third-party2525ms · 840KB · $34/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
dn0qt3r0xannq.cloudfront.net
dn0qt3r0xannq.cloudfront.net
Other
554ms
116 KB
47%
$7/mo
Costly
edge.aditude.io
edge.aditude.io
Other
374ms
162 KB
72%
$5/mo
Costly
c.amazon-adsystem.com
c.amazon-adsystem.com
Other
359ms
93 KB
58%
$5/mo
Costly
securepubads.g.doubleclick.net
securepubads.g.doubleclick.net
Other
340ms
201 KB
75%
$5/mo
Costly
raven-static.aditude.io
raven-static.aditude.io
Other
292ms
106 KB
61%
$4/mo
Costly
cadmus.script.ac
cadmus.script.ac
Other
232ms
90 KB
26%
$3/mo
Costly
securepubads.g.doubleclick.net
securepubads.g.doubleclick.net
Other
183ms
37 KB
—
$2/mo
Optional
Google Analytics
ssl.google-analytics.com
Analytics
74ms
17 KB
—
$1/mo
Optional
dn0qt3r0xannq.cloudfront.net
dn0qt3r0xannq.cloudfront.net
Other
67ms
12 KB
—
$1/mo
Optional
stats.wp.com
stats.wp.com
Other
52ms
5 KB
—
$1/mo
Optional
dn0qt3r0xannq.cloudfront.net
Other
Costly
Execution554ms
Transfer116 KB
Unused47%
Monthly Cost$7/mo
edge.aditude.io
Other
Costly
Execution374ms
Transfer162 KB
Unused72%
Monthly Cost$5/mo
c.amazon-adsystem.com
Other
Costly
Execution359ms
Transfer93 KB
Unused58%
Monthly Cost$5/mo
securepubads.g.doubleclick.net
Other
Costly
Execution340ms
Transfer201 KB
Unused75%
Monthly Cost$5/mo
raven-static.aditude.io
Other
Costly
Execution292ms
Transfer106 KB
Unused61%
Monthly Cost$4/mo
cadmus.script.ac
Other
Costly
Execution232ms
Transfer90 KB
Unused26%
Monthly Cost$3/mo
securepubads.g.doubleclick.net
Other
Optional
Execution183ms
Transfer37 KB
Monthly Cost$2/mo
Google Analytics
Analytics
Optional
Execution74ms
Transfer17 KB
Monthly Cost$1/mo
dn0qt3r0xannq.cloudfront.net
Other
Optional
Execution67ms
Transfer12 KB
Monthly Cost$1/mo
stats.wp.com
Other
Optional
Execution52ms
Transfer5 KB
Monthly Cost$1/mo
These scripts may cost more than they're worth
dn0qt3r0xannq.cloudfront.net adds 554ms and costs ~$7/month
edge.aditude.io adds 374ms and costs ~$5/month
c.amazon-adsystem.com adds 359ms and costs ~$5/month
securepubads.g.doubleclick.net adds 340ms and costs ~$5/month
raven-static.aditude.io adds 292ms and costs ~$4/month
cadmus.script.ac adds 232ms and costs ~$3/month
53% of JavaScript execution time comes from third-party scripts.
Why this matters
Third-party scripts (analytics, ads, social, A/B testing) often dominate execution time — every one is a perf-and-privacy tax.
Learn more ▾▴
Each third-party script is a black box: you don't control when it loads, what it executes, or how much it grows. They often account for a major share of total blocking time on average sites (HTTP Archive's Web Almanac documents the trend). Audit which ones you actually need, defer the rest, and use facade patterns (lite-youtube, lite-vimeo) for embedded media.
Source: web.dev / HTTP Archive Web Almanac
dn0qt3r0xannq.cloudfront.net takes 554ms 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
edge.aditude.io takes 374ms 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
72% of edge.aditude.io'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
c.amazon-adsystem.com takes 359ms 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
58% of c.amazon-adsystem.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
securepubads.g.doubleclick.net takes 340ms 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
75% of securepubads.g.doubleclick.net'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
raven-static.aditude.io takes 292ms 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
61% of raven-static.aditude.io'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
cadmus.script.ac takes 232ms 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.