Performance
· 17 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.81 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
3.26 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
66 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.81 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.
4.96 s
Page Load Progression
DThird-Party ImpactAction65% third-party, 0 ms blockingFIX
CImage OptimizationAction9 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
BJS Execution Cost821ms total JS executionREVIEW
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| Unattributable | 308ms | 80ms | 0ms | 3rd |
| https://hexo.io/ | 273ms | 25ms | 2ms | 1st |
| https://www.googletagmanager.com/gtag/js?id=G-8VWFR61YDH&cx=c&_slc=1 | 180ms | 140ms | 37ms | 3rd |
| https://www.google-analytics.com/analytics.js | 61ms | 48ms | 6ms | 3rd |
BJS Bundles7 scripts, 93 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.googletagmanager.com/gtag/js?id=G-8VWFR61YDH&cx=c&_slc=1 | 147 KB | 63 KB (43%) | ✓ | 3rd |
| https://cdn.jsdelivr.net/npm/@docsearch/js@3 | 36 KB | 30 KB (83%) | ✓ | 3rd |
| https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js | 1 KB | — | ✓ | 3rd |
| https://hexo.io/js/lang_select.js | 0 KB | — | ✓ | 1st |
| https://hexo.io/js/mobile_nav.js | 0 KB | — | ✓ | 1st |
| https://hexo.io/js/colorScheme.js | 0 KB | — | ✓ | 1st |
| https://www.google-analytics.com/analytics.js | 21 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
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
BHTTP Cachingpublic,max-age=0,must-revalidateREVIEW
public,max-age=0,must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| public | — | Any cache may store this response |
| max-age | 0 | Cache for 0 seconds |
| must-revalidate | — | Must recheck with server after expiry |
APage Weight Budget902 KB transferred, 31 requestsPASS
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
A+Text CompressionAll text resources are compressedPASS
A+Font Loading5 fonts (340 KB)PASS
Web fonts
5
340 KB total
Render-blocking
0
of 5
Dominant font-display
swap
Most common across fonts
Font loading timeline
- Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
- Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
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 ~136 KB and ~272 ms
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints1 hints, 0 missing preconnectsPASS
Current Resource Hints
1 resource hints configured
APage Weight Inventory31 resources · 902 KB · 93 KB savings availablePASS
~93.0 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 31 resources | 902.4 KiB | ||||||
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
Network Waterfall31 requests over 736msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 308ms | 0 KB | — | €3/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 180ms | 147 KB | 43% | €2/mo | Optional |
Google Analytics www.google-analytics.com | Analytics | 61ms | 21 KB | — | €1/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 308ms and costs ~€3/month
67% 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 308ms 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