Performance
· 16 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
5.45 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
25.80 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
2.74 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.003
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
11.66 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
35.98 s
Page Load Progression
FPage Weight BudgetAction5.7 MB transferred, 285 requestsFIX
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
Subset fonts to include only used characters, or switch to system font stacks.
Font payload is large — subset to used glyphs only, or fall back to system fonts (zero load time).
Source: web.dev font loading
Remove unused CSS rules with tools like PurgeCSS to reduce stylesheet size.
CSS bundle is large — purge unused styles (PurgeCSS, Tailwind JIT) to reduce CSS payload.
Source: web.dev
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
DThird-Party ImpactAction97% third-party, 0 ms blockingFIX
FJS Execution CostAction12734ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.corriere.it/ | 2409ms | 187ms | 23ms | 1st |
| Unattributable | 2163ms | 93ms | 0ms | 3rd |
| https://components2.corriereobjects.it/rcs_orchestrator/v4/index.min.js?v=f904f6e9973ccdaa5ef9869ac6362217 | 927ms | 782ms | 3ms | 3rd |
| https://components2.corriereobjects.it/rcs_mc_widget_FE/v0/20260126155348476.extra/chunks/4.7b9c44a0.min.js | 702ms | 390ms | 30ms | 3rd |
| https://components2.corriereobjects.it/rcs_iabtfc2/v5/index.min.js | 634ms | 414ms | 171ms | 3rd |
| https://components2.corriereobjects.it/rcs_video-manager/v3/index.min.js?v=f64996f5f7ac5c4c7a4d3c60675aa84b | 484ms | 389ms | 57ms | 3rd |
| https://cdn.permutive.app/6ccc4e64-d4bc-4642-97b6-db50a75d8a5d-web.js | 429ms | 217ms | 113ms | 3rd |
| https://cdn.tinypass.com/api/piano.js?v=1 | 409ms | 272ms | 39ms | 3rd |
| https://micro.rubiconproject.com/prebid/dynamic/10814.js | 406ms | 346ms | 52ms | 3rd |
| https://components2.corriereobjects.it/rcs_tag-manager/v1/20260407132501530.extra/chunks/Corriere-Adobe-feature.min.js | 399ms | 360ms | 9ms | 3rd |
Showing top 10 of 38 scripts
FJS BundlesAction121 scripts, 890 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://securepubads.g.doubleclick.net/pagead/managed/js/gpt/m202604020101/pubads_impl.js | 183 KB | 138 KB (75%) | ✓ | 3rd |
| https://imasdk.googleapis.com/js/sdkloader/ima3.js?v=1 | 148 KB | 108 KB (73%) | ✓ | 3rd |
| https://micro.rubiconproject.com/prebid/dynamic/10814.js | 173 KB | 98 KB (57%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-9927244 | 130 KB | 77 KB (60%) | ✓ | 3rd |
| https://cdn.tinypass.com/api/piano.js?v=1 | 132 KB | 69 KB (52%) | ✓ | 3rd |
| https://components2.corriereobjects.it/rcs_video-manager/v3/index.min.js?v=f64996f5f7ac5c4c7a4d3c60675aa84b | 96 KB | 63 KB (65%) | ✓ | 3rd |
| https://components2.corriereobjects.it/rcs_mc_widget_FE/v0/index.min.js | 146 KB | 59 KB (41%) | ✓ | 3rd |
| https://c.amazon-adsystem.com/aax2/apstag.js | 90 KB | 50 KB (56%) | ✓ | 3rd |
| https://cdn-gl.imrworldwide.com/novms/js/2/nlsSDK600.bundle.min.js | 73 KB | 39 KB (54%) | ✓ | 3rd |
| https://cdn.permutive.app/6ccc4e64-d4bc-4642-97b6-db50a75d8a5d-web.js | 218 KB | 39 KB (18%) | ✓ | 3rd |
Consider code splitting or tree shaking to reduce unused code.
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.
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.
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.
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.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
CImage OptimizationAction102 images, 0 KB saveableREVIEW
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading14 fonts (270 KB)PASS
Web fonts
14
270 KB total
Render-blocking
0
of 14
Dominant font-display
swap
Most common across fonts
Font loading timeline
- Convert to woff2 for ~30% smaller file size
- Convert to woff2 for ~30% smaller file size
- 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 ~16 KB and ~32 ms
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints19 hints, 0 missing preconnectsPASS
Current Resource Hints
19 resource hints configured
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
A+HTTP Cachingmax-age=2 (2 seconds)PASS
max-age=2, public, s-maxage=5
| Directive | Value | Meaning |
|---|---|---|
| max-age | 2 | Cache for 2 seconds |
| public | — | Any cache may store this response |
| s-maxage | 5 | CDN caches for 5 seconds |
Network Waterfall285 requests over 0msINFO
Performance analysis not available for this result.
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 2163ms | 0 KB | — | €23/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 927ms | 10 KB | — | €10/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 702ms | 38 KB | — | €8/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 634ms | 200 KB | 13% | €7/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 484ms | 96 KB | 65% | €5/mo | Costly |
cdn.permutive.app cdn.permutive.app | Other | 429ms | 218 KB | 18% | €5/mo | Costly |
cdn.tinypass.com cdn.tinypass.com | Other | 409ms | 132 KB | 52% | €4/mo | Costly |
micro.rubiconproject.com micro.rubiconproject.com | Other | 406ms | 173 KB | 57% | €4/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 399ms | 25 KB | — | €4/mo | Costly |
c.amazon-adsystem.com c.amazon-adsystem.com | Other | 242ms | 90 KB | 56% | €3/mo | Costly |
securepubads.g.doubleclick.net securepubads.g.doubleclick.net | Other | 240ms | 183 KB | 75% | €3/mo | Costly |
cdn-gl.imrworldwide.com cdn-gl.imrworldwide.com | Other | 234ms | 73 KB | 54% | €3/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 223ms | 146 KB | 41% | €2/mo | Costly |
cdn.cxense.com cdn.cxense.com | Other | 209ms | 6 KB | — | €2/mo | Costly |
fundingchoicesmessages.google.com fundingchoicesmessages.google.com | Other | 208ms | 70 KB | 51% | €2/mo | Costly |
components2.corriereobjects.it components2.corriereobjects.it | Other | 196ms | 37 KB | — | €2/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 182ms | 130 KB | 60% | €2/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 179ms | 9 KB | — | €2/mo | Optional |
cdn.sophi.io cdn.sophi.io | Other | 162ms | 38 KB | — | €2/mo | Optional |
securepubads.g.doubleclick.net securepubads.g.doubleclick.net | Other | 158ms | 34 KB | — | €2/mo | Optional |
cdn.cxense.com cdn.cxense.com | Other | 144ms | 38 KB | 58% | €2/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 126ms | 57 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 126ms | 8 KB | — | €1/mo | Optional |
jsDelivr cdn.jsdelivr.net | CDN | 117ms | 40 KB | 61% | €1/mo | Optional |
api-esp.piano.io api-esp.piano.io | Other | 115ms | 28 KB | — | €1/mo | Optional |
imasdk.googleapis.com imasdk.googleapis.com | Other | 109ms | 148 KB | 73% | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 102ms | 10 KB | — | €1/mo | Optional |
static.chartbeat.com static.chartbeat.com | Other | 91ms | 10 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 81ms | 207 KB | — | €1/mo | Optional |
cdn1.anonymised.io cdn1.anonymised.io | Other | 79ms | 24 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 72ms | 19 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 72ms | 5 KB | — | €1/mo | Optional |
secure.cdn.fastclick.net secure.cdn.fastclick.net | Other | 71ms | 22 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 62ms | 21 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 61ms | 2 KB | — | €1/mo | Optional |
websdk.appsflyer.com websdk.appsflyer.com | Other | 58ms | 16 KB | — | €1/mo | Optional |
components2.corriereobjects.it components2.corriereobjects.it | Other | 51ms | 10 KB | — | €1/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 2163ms and costs ~€23/month
- components2.corriereobjects.it adds 927ms and costs ~€10/month
- components2.corriereobjects.it adds 702ms and costs ~€8/month
- components2.corriereobjects.it adds 634ms and costs ~€7/month
- components2.corriereobjects.it adds 484ms and costs ~€5/month
- cdn.permutive.app adds 429ms and costs ~€5/month
- cdn.tinypass.com adds 409ms and costs ~€4/month
- micro.rubiconproject.com adds 406ms and costs ~€4/month
- components2.corriereobjects.it adds 399ms and costs ~€4/month
- c.amazon-adsystem.com adds 242ms and costs ~€3/month
- securepubads.g.doubleclick.net adds 240ms and costs ~€3/month
- cdn-gl.imrworldwide.com adds 234ms and costs ~€3/month
- components2.corriereobjects.it adds 223ms and costs ~€2/month
- cdn.cxense.com adds 209ms and costs ~€2/month
- fundingchoicesmessages.google.com adds 208ms and costs ~€2/month
81% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
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
Unattributable takes 2163ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
components2.corriereobjects.it takes 927ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
components2.corriereobjects.it takes 702ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
components2.corriereobjects.it takes 634ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
components2.corriereobjects.it takes 484ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
65% of components2.corriereobjects.it's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
cdn.permutive.app takes 429ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn.tinypass.com takes 409ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
52% of cdn.tinypass.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
micro.rubiconproject.com takes 406ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
57% of micro.rubiconproject.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
components2.corriereobjects.it takes 399ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
c.amazon-adsystem.com takes 242ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
56% of c.amazon-adsystem.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
securepubads.g.doubleclick.net takes 240ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
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.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
cdn-gl.imrworldwide.com takes 234ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
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.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
components2.corriereobjects.it takes 223ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
cdn.cxense.com takes 209ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
fundingchoicesmessages.google.com takes 208ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
51% of fundingchoicesmessages.google.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
60% of Google Tag Manager's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
58% of cdn.cxense.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
61% of jsDelivr's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
73% of imasdk.googleapis.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev