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.
2.11 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.61 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
279 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.001
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.27 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.
5.21 s
Page Load Progression
FPage Weight BudgetAction10.7 MB transferred, 37 requestsFIX
DThird-Party ImpactAction97% third-party, 0 ms blockingFIX
BImage Optimization7 images, 0 KB saveableREVIEW
CJS Execution CostAction1385ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| Unattributable | 584ms | 122ms | 0ms | 3rd |
| https://www.spacex.com/polyfills.08b6611321d68f0c.js | 304ms | 255ms | 0ms | 1st |
| https://www.spacex.com/vendor.ca6bf32c26e75d4a.js | 275ms | 267ms | 2ms | 1st |
| https://www.spacex.com/ | 222ms | 7ms | 1ms | 1st |
BJS Bundles10 scripts, 94 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.spacex.com/vendor.ca6bf32c26e75d4a.js | 167 KB | 94 KB (56%) | ✓ | 1st |
| https://www.spacex.com/environment.js | 0 KB | — | ✓ | 1st |
| https://www.spacex.com/runtime.2c0f56a135f2b763.js | 3 KB | — | ✓ | 1st |
| https://www.spacex.com/polyfills.08b6611321d68f0c.js | 23 KB | — | ✓ | 1st |
| https://www.spacex.com/main.f5e02a8ad9f09a96.js | 18 KB | — | ✓ | 1st |
| https://static.cloudflareinsights.com/beacon.min.js/v8c78df7c7c0f484497ecbca7046644da1771523124516 | 11 KB | — | ✓ | 3rd |
| https://www.spacex.com/7753.5efeb53f2f091644.js | 1 KB | — | ✓ | 1st |
| https://www.spacex.com/2248.1c995e45edcf7105.js | 4 KB | — | ✓ | 1st |
| https://www.spacex.com/common.9dc1d69e3201c9a1.js | 8 KB | — | ✓ | 1st |
| https://www.spacex.com/8119.f4e5c33ecc356475.js | 3 KB | — | ✓ | 1st |
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
A+Text CompressionAll text resources are compressedPASS
A+Font Loading2 fonts (43 KB)PASS
Web fonts
2
43 KB total
Render-blocking
0
of 2
Dominant font-display
swap
Most common across fonts
Font loading timeline
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 CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
A+Green HostingWhether the site is served from green-energy infrastructurePASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
A+HTTP Cachingmax-age=600 (10 minutes)PASS
public, max-age=600
| Directive | Value | Meaning |
|---|---|---|
| public | — | Any cache may store this response |
| max-age | 600 | Cache for 10 minutes |
Network Waterfall37 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 | 584ms | 0 KB | — | €6/mo | Costly |
These scripts may cost more than they're worth
- Unattributable adds 584ms and costs ~€6/month
42% of JavaScript execution time comes from third-party scripts.
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
Unattributable takes 584ms 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