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
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
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
Image Optimization
41 images, 0 KB saveable
REVIEW
41 images, 0 KB saveable
Warning::
!
https://funnytimes.com/wp-content/uploads/2024/09/... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
41images1.9 MB
0oversized-0 KB
9legacy format
1missing dimensionsCLS risk
Set explicit width and height to prevent CLS.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
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.
3 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 5.4 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.
B
HTTP Caching
public, max-age=0, s-maxage=86400
REVIEW
public, max-age=0, s-maxage=86400
Info::
✓
Cache-Control header is set
Got: public, max-age=0, s-maxage=86400
Info::
✓
CDN TTL: 1 day (s-maxage=86400)
Info::
i
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control
public, max-age=0, s-maxage=86400
Directive
Value
Meaning
public
—
Any cache may store this response
max-age
0
Cache for 0 seconds
s-maxage
86400
CDN caches for 1 day
A+
Third-Party Impact
17% third-party, 0 ms blocking
PASS
17% third-party, 0 ms blocking
Info::
i
Third-party code accounts for 17% of page weight (555.7 KiB of 3.2 MiB)
Info::
✓
Third-party blocking time is low (0 ms)
83%
17%
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
9 fonts (342 KB)
PASS
9 fonts (342 KB)
Info::
i
9 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
9
342 KB total
Render-blocking
0
of 9
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
newspaper.woffwoffswap
Size35 KB
Load time42 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
gillsansstd-extrabold-w...woffswap
Size25 KB
Load time33 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
QGYsz_wNahGAdqQ43Rh_fKD...woff2swap
Size49 KB
Load time24 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
gillsansstd-italic-webf...woffswap
Size28 KB
Load time39 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
gillsansstd-bold-webfon...woffswap
Size26 KB
Load time45 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
gillsansstd-light-webfo...woffswap
Size24 KB
Load time48 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
KFO7CnqEu92Fr1ME7kSn66a...woff2swap
Size37 KB
Load time7 ms
Start1.1 s
RiskFOUT — text flashes from fallback to web font
fontawesome-webfont.woff2woff2swap
Size76 KB
Load time28 ms
Start1.5 s
RiskFOUT — text flashes from fallback to web font
memvYaGs126MiZpBA-UvWbX...woff2swap
Size42 KB
Load time5 ms
Start2.8 s
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)
Fixing the unchecked items could save ~41 KB and ~82 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
5 hints, 0 missing preconnects
PASS
5 hints, 0 missing preconnects
Info::
i
1 dns-prefetch redundant with preconnect on same origin
preconnect already does the DNS lookup; adding dns-prefetch to the same origin is at best a no-op. Sample: https://fonts.googleapis.com. Remove the redundant dns-prefetch entries.
Info::
✓
Page uses 5 resource hint(s)
Current Resource Hints
preconnect
2
preload
2
dns-prefetch
1
prefetch—
5 resource hints configured
preconnect already does the DNS lookup; adding dns-prefetch to the same origin is at best a no-op. Sample: https://fonts.googleapis.com. Remove the redundant dns-prefetch entries.
Why this matters
Performance issues directly impact user engagement and conversion rates.
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 max-age=0 (≤ 5min) is appropriate
PASS
Main HTML max-age=0 (≤ 5min) is appropriate
Info::
✓
Main HTML max-age=0 (≤ 5min) is appropriate
Got: public, max-age=0, s-maxage=86400
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.
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
Network Waterfall
113 requests over 2792ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
25%of JavaScript execution is third-party
First-party Third-party1323ms · 424KB · $8/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
Unattributable
Unattributable
Other
600ms
0 KB
—
$3/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
330ms
157 KB
41%
$2/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
298ms
111 KB
63%
$2/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
95ms
156 KB
69%
$1/mo
Optional
Unattributable
Other
Costly
Execution600ms
Transfer0 KB
Monthly Cost$3/mo
Google Tag Manager
Tag Manager
Costly
Execution330ms
Transfer157 KB
Unused41%
Monthly Cost$2/mo
Google Tag Manager
Tag Manager
Costly
Execution298ms
Transfer111 KB
Unused63%
Monthly Cost$2/mo
Google Tag Manager
Tag Manager
Optional
Execution95ms
Transfer156 KB
Unused69%
Monthly Cost$1/mo
These scripts may cost more than they're worth
Unattributable adds 600ms and costs ~$3/month
Google Tag Manager adds 330ms and costs ~$2/month
Google Tag Manager adds 298ms and costs ~$2/month
Unattributable takes 600ms 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
Google Tag Manager takes 330ms 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
Google Tag Manager takes 298ms 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
63% of Google Tag Manager'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
69% of Google Tag Manager'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.