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
116 images, 0 KB saveable
REVIEW
116 images, 0 KB saveable
Info::
✓
All images are well-optimized
116images2.2 MB
0oversized-0 KB
7legacy format
0missing dimensionsCLS risk
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
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::
!
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.
Warning::
!
Total JS execution time is 24.3 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+
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
4 fonts (52 KB)
PASS
4 fonts (52 KB)
Info::
i
4 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
4
52 KB total
Render-blocking
0
of 4
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
metropolis_all_300_norm...woff2swap
Size13 KB
Load time69 ms
Start185 ms
RiskFOUT — text flashes from fallback to web font
metropolis_all_400_norm...woff2swap
Size13 KB
Load time70 ms
Start185 ms
RiskFOUT — text flashes from fallback to web font
metropolis_all_500_norm...woff2swap
Size13 KB
Load time72 ms
Start186 ms
RiskFOUT — text flashes from fallback to web font
metropolis_all_600_norm...woff2swap
Size13 KB
Load time55 ms
Start186 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
7 hints, 0 missing preconnects
PASS
7 hints, 0 missing preconnects
Warning::
!
4 font preload(s) missing `crossorigin` -- font will be downloaded twice
Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_300_normal-s.p.071k1ak69ujaf.woff2, https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_400_normal-s.p.3x_wuh-kq20jn.woff2, https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_500_normal-s.p.0q3u9j3khin1i.woff2 (+1 more). Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.
Info::
✓
Page uses 7 resource hint(s)
Current Resource Hints
preconnect
2
preload
5
dns-prefetch—
prefetch—
7 resource hints configured
Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_300_normal-s.p.071k1ak69ujaf.woff2, https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_400_normal-s.p.3x_wuh-kq20jn.woff2, https://static3.mediasetplay.mediaset.it/assets/_next/static/media/metropolis_all_500_normal-s.p.0q3u9j3khin1i.woff2 (+1 more). Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.
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+
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 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.
A+
Render-Blocking Resources
No render-blocking resources detected
PASS
No render-blocking resources detected
Info::
✓
No render-blocking resources detected in <head>
A+
Third-Party Resources
No third-party resources detected
PASS
No third-party resources detected
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
192 requests over 7501ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
92%of JavaScript execution is third-party
First-party Third-party22261ms · 2799KB · €118/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
mediasetinfinity.mediaset.it
mediasetinfinity.mediaset.it
Other
10430ms
1124 KB
—
€55/mo
Costly
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
5876ms
73 KB
34%
€31/mo
Costly
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
1024ms
6 KB
—
€5/mo
Costly
cdns.gigya.com
cdns.gigya.com
Other
896ms
216 KB
54%
€5/mo
Costly
Iubenda
cdn.iubenda.com
Consent
684ms
112 KB
64%
€4/mo
Essential
Google Tag Manager
www.googletagmanager.com
Tag Manager
459ms
164 KB
46%
€2/mo
Costly
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
372ms
42 KB
67%
€2/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
257ms
151 KB
54%
€1/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
248ms
151 KB
54%
€1/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
227ms
144 KB
56%
€1/mo
Costly
cdn-gl.imrworldwide.com
cdn-gl.imrworldwide.com
Other
219ms
74 KB
54%
€1/mo
Costly
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
200ms
58 KB
68%
€1/mo
Optional
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
161ms
25 KB
—
€1/mo
Optional
login.mediaset.it
login.mediaset.it
Other
151ms
1 KB
—
€1/mo
Optional
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
147ms
29 KB
—
€1/mo
Optional
login.mediaset.it
login.mediaset.it
Other
122ms
0 KB
—
€1/mo
Optional
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
120ms
64 KB
—
€1/mo
Optional
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
108ms
38 KB
57%
€1/mo
Optional
Iubenda
cdn.iubenda.com
Consent
108ms
36 KB
—
€1/mo
Essential
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
95ms
166 KB
74%
€0/mo
Optional
login.mediaset.it
login.mediaset.it
Other
88ms
0 KB
—
€0/mo
Optional
login.mediaset.it
login.mediaset.it
Other
86ms
0 KB
—
€0/mo
Optional
login.mediaset.it
login.mediaset.it
Other
65ms
53 KB
—
€0/mo
Optional
cdn-gl.imrworldwide.com
cdn-gl.imrworldwide.com
Other
63ms
7 KB
—
€0/mo
Optional
static3.mediasetplay.mediaset.it
static3.mediasetplay.mediaset.it
Other
54ms
66 KB
57%
€0/mo
Optional
mediasetinfinity.mediaset.it
Other
Costly
Execution10430ms
Transfer1124 KB
Monthly Cost€55/mo
static3.mediasetplay.mediaset.it
Other
Costly
Execution5876ms
Transfer73 KB
Unused34%
Monthly Cost€31/mo
static3.mediasetplay.mediaset.it
Other
Costly
Execution1024ms
Transfer6 KB
Monthly Cost€5/mo
cdns.gigya.com
Other
Costly
Execution896ms
Transfer216 KB
Unused54%
Monthly Cost€5/mo
Iubenda
Consent
Essential
Execution684ms
Transfer112 KB
Unused64%
Monthly Cost€4/mo
Google Tag Manager
Tag Manager
Costly
Execution459ms
Transfer164 KB
Unused46%
Monthly Cost€2/mo
static3.mediasetplay.mediaset.it
Other
Costly
Execution372ms
Transfer42 KB
Unused67%
Monthly Cost€2/mo
Google Tag Manager
Tag Manager
Costly
Execution257ms
Transfer151 KB
Unused54%
Monthly Cost€1/mo
Google Tag Manager
Tag Manager
Costly
Execution248ms
Transfer151 KB
Unused54%
Monthly Cost€1/mo
Google Tag Manager
Tag Manager
Costly
Execution227ms
Transfer144 KB
Unused56%
Monthly Cost€1/mo
cdn-gl.imrworldwide.com
Other
Costly
Execution219ms
Transfer74 KB
Unused54%
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution200ms
Transfer58 KB
Unused68%
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution161ms
Transfer25 KB
Monthly Cost€1/mo
login.mediaset.it
Other
Optional
Execution151ms
Transfer1 KB
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution147ms
Transfer29 KB
Monthly Cost€1/mo
login.mediaset.it
Other
Optional
Execution122ms
Transfer0 KB
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution120ms
Transfer64 KB
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution108ms
Transfer38 KB
Unused57%
Monthly Cost€1/mo
Iubenda
Consent
Essential
Execution108ms
Transfer36 KB
Monthly Cost€1/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution95ms
Transfer166 KB
Unused74%
Monthly Cost€0/mo
login.mediaset.it
Other
Optional
Execution88ms
Transfer0 KB
Monthly Cost€0/mo
login.mediaset.it
Other
Optional
Execution86ms
Transfer0 KB
Monthly Cost€0/mo
login.mediaset.it
Other
Optional
Execution65ms
Transfer53 KB
Monthly Cost€0/mo
cdn-gl.imrworldwide.com
Other
Optional
Execution63ms
Transfer7 KB
Monthly Cost€0/mo
static3.mediasetplay.mediaset.it
Other
Optional
Execution54ms
Transfer66 KB
Unused57%
Monthly Cost€0/mo
These scripts may cost more than they're worth
mediasetinfinity.mediaset.it adds 10430ms and costs ~€55/month
static3.mediasetplay.mediaset.it adds 5876ms and costs ~€31/month
static3.mediasetplay.mediaset.it adds 1024ms and costs ~€5/month
cdns.gigya.com adds 896ms and costs ~€5/month
Google Tag Manager adds 459ms and costs ~€2/month
static3.mediasetplay.mediaset.it adds 372ms and costs ~€2/month
Google Tag Manager adds 257ms and costs ~€1/month
Google Tag Manager adds 248ms and costs ~€1/month
Google Tag Manager adds 227ms and costs ~€1/month
cdn-gl.imrworldwide.com adds 219ms and costs ~€1/month
92% 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
mediasetinfinity.mediaset.it takes 10430ms 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
static3.mediasetplay.mediaset.it takes 5876ms 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
static3.mediasetplay.mediaset.it takes 1024ms 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
cdns.gigya.com takes 896ms 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
54% of cdns.gigya.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
64% of Iubenda'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
Google Tag Manager takes 459ms 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
static3.mediasetplay.mediaset.it takes 372ms 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
67% of static3.mediasetplay.mediaset.it'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
Google Tag Manager takes 257ms 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
54% 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
Google Tag Manager takes 248ms 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
54% 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
Google Tag Manager takes 227ms 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
56% 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
cdn-gl.imrworldwide.com takes 219ms 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
54% of cdn-gl.imrworldwide.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
68% of static3.mediasetplay.mediaset.it'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
57% of static3.mediasetplay.mediaset.it'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
74% of static3.mediasetplay.mediaset.it'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
57% of static3.mediasetplay.mediaset.it'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.