Performance
· 15 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.
562 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
1.70 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
0 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
565 ms
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
1.70 s
Page Load Progression
FPage Weight BudgetAction3.2 MB transferred, 59 requestsFIX
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
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
DPage Weight InventoryAction59 resources · 3.2 MB · 82 KB savings availableFIX
~81.8 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 59 resources | 3.2 MiB | ||||||
FHTTP CachingActionNo cache headersFIX
No Cache-Control header
Adding a Cache-Control header can significantly improve repeat-visit performance.
BImage Optimization17 images, 0 KB saveableREVIEW
BJS Bundles23 scripts, 82 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://docs.github.com/_next/static/chunks/356-50270be47535a244.js | 115 KB | 82 KB (71%) | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/4539-152a524cc8af7463.js | 11 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/9296-adce7d38c5ff8f82.js | 4 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/framework-34c2c0424fa2c81d.js | 42 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/main-1c2d02885fc63e43.js | 39 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/pages/_app-1e86da7da7032a99.js | 27 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/2911edaa-498f353f680a6bc0.js | 20 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/3576-143b941f10f85efc.js | 3 KB | — | ✓ | 3rd |
| https://pages.github.com/js/application.js | 2 KB | — | ✓ | 3rd |
| https://docs.github.com/_next/static/chunks/2857-311d7761dc6243bb.js | 5 KB | — | ✓ | 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
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+JS Execution Cost358ms total JS executionPASS
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://docs.github.com/en/pages | 152ms | 1ms | 0ms | 3rd |
| https://docs.github.com/_next/static/chunks/framework-34c2c0424fa2c81d.js | 106ms | 98ms | 3ms | 3rd |
| Unattributable | 100ms | 2ms | 0ms | 3rd |
A+Font Loading1 fonts (4 KB)PASS
Web fonts
1
4 KB total
Render-blocking
0
of 1
Dominant font-display
swap
Most common across fonts
Font loading timeline
- 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 ~1 KB and ~2 ms
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
Network Waterfall59 requests over 811msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
docs.github.com docs.github.com | Other | 152ms | 16 KB | — | $2/mo | Optional |
docs.github.com docs.github.com | Other | 106ms | 42 KB | — | $1/mo | Optional |
Unattributable Unattributable | Other | 100ms | 0 KB | — | $1/mo | Optional |
100% 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