Skip to content
https://xivclimbers.com

Performance

· 22 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
93
GRADE
A
FIX
1
REVIEW
4
PASS
14
INFO
3

Performance-focused optimization plan with CWV assessment, top offenders, and time estimates

100
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
89
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
100
Best Practices Checks for modern web development best practices including HTTPS, no console errors, and secure JavaScript.
100
SEO Measures basic SEO optimizations: meta tags, crawlability, link text, and mobile friendliness.

First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.

450 ms

Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.

450 ms

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.

783 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.

450 ms

Page Load Progression

375 ms
750 ms
1.1 s
1.5 s
1.9 s
2.2 s
2.6 s
3.0 s
Checks
22
14 PASS 4 REVIEW 1 FIX
D
HTTP Caching
Action
no-store (uncacheable)
FIX
no-store (uncacheable)
Info::
Cache-Control: no-store prevents all caching
Intentional for dynamic content, but increases server load for every page view.
Got: max-age=0, must-revalidate, no-cache, no-store, private
Info::
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control

max-age=0, must-revalidate, no-cache, no-store, private

DirectiveValueMeaning
max-age0Cache for 0 seconds
must-revalidateMust recheck with server after expiry
no-cacheCache but always revalidate first
no-storeNever cache this response
privateOnly browser cache, not CDN/proxy
B
Image Optimization
22 images, 0 KB saveable
REVIEW
22 images, 0 KB saveable
Info::
All images are well-optimized
22 images 20 KB
0 oversized -0 KB
21 legacy format
0 missing dimensions CLS risk
B
HTTP/3 (QUIC)
HTTP/3 not advertised
REVIEW
HTTP/3 not advertised
Info::
HTTP/3 (QUIC) is not advertised
HTTP/3 isn't advertised via Alt-Svc and the worker didn't negotiate h3. HTTP/3 reduces handshake latency (1-RTT instead of 2-3 RTTs) and is more resilient on lossy connections. Most modern CDNs (Cloudflare, Fastly, AWS CloudFront, Google Cloud CDN) support HTTP/3 with a single config switch -- consider enabling for mobile-heavy workloads.
C
Compression Algorithm
Action
Main response served uncompressed
REVIEW
Main response served uncompressed
Info::
Main HTML response has no Content-Encoding (uncompressed)
The main HTML document is served without compression. The Text Compression section above lists the broader picture; for the main response specifically, even gzip would shave ~70-80% off most text payloads.
B
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
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.
A+
Page Weight Budget
91 KB transferred, 26 requests
PASS
91 KB transferred, 26 requests
Info::
Page weighs 488 KB (91 KB transferred)
Info::
26 HTTP requests
Info::
Estimated 0.02 g CO2 per page load
91 KB / 2.4 MB budget
91 KB transferred
26 requests
0.02 g CO2 per page load
JavaScript 50.2 KiB 55%
Images 19.7 KiB 22%
HTML 15.2 KiB 17%
CSS 5.9 KiB 6%
Other 270 B 0%
0 2.4 MB 4.9 MB
Under budget
A+
Third-Party Impact
No third-party resources
PASS
No third-party resources
Info::
No third-party resources detected
No third-party resources detected — all resources are first-party.
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+
JS Execution Cost
238ms total JS execution
PASS
238ms total JS execution
Info::
https://xivclimbers.com/: 128ms CPU time
Info::
Unattributable: 110ms CPU time
Info::
Third-party scripts: 110ms (46% of total)

Main Thread Breakdown

Other 39% Style & Layout 27% Script Evaluation 16% Rendering 9% Parse HTML & CSS 8%
ScriptTotalScriptingParse/CompileParty
https://xivclimbers.com/128ms2ms0ms1st
Unattributable110ms3ms0ms3rd
A+
Font Loading
No web fonts (system fonts)
PASS
No web fonts (system fonts)
Info::
No web fonts loaded — system fonts are fastest
No web fonts loaded — system fonts are optimal.
A+
JS Bundles
1 scripts, 38 KB unused
PASS
1 scripts, 38 KB unused
Warning::
https://xivclimbers.com/livewire/livewire.min.js?i...: 38 KB unused (76%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 38 KB
38 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://xivclimbers.com/livewire/livewire.min.js?id=df3a17f250 KB38 KB (76%)1st

Consider code splitting or tree shaking to reduce unused code.

Why this matters

This bundle has high unused code — code-split or tree-shake to ship only what executes.

Source: web.dev / Lighthouse coverage

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
No optimization needed
PASS
No optimization needed
Info::
No resource hint issues
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+
Main HTML Cache-Control
Main HTML uses no-store -- correct for sensitive/dynamic content
PASS
Main HTML uses no-store -- correct for sensitive/dynamic content
Info::
Main HTML uses no-store -- correct for sensitive/dynamic content
Got: max-age=0, must-revalidate, no-cache, no-store, private
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::
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+
Page Weight Inventory
26 resources · 91 KB · 38 KB savings available
PASS
26 resources · 91 KB · 38 KB savings available
Info::
Within 1MB page-weight target
Got: 91 KB
Info::
1 third-party resources (0% of weight)
26 resources · 91.4 KiB · 1 third-party Within 1MB page-weight target
JavaScript 55% · 50.2 KiB
Image 22% · 20.0 KiB
Document 17% · 15.2 KiB
CSS 6% · 5.9 KiB

~37.7 KiB of savings available

Remove unused JavaScript: 37.7 KiB
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS

Green Hosting

This site is hosted on green energy infrastructure

Provider: OVHcloud

Network Waterfall
26 requests over 1259ms
INFO
0 ms 500 ms 1.0 s FCP 450 ms LCP 450 mshttps://xivclimbers.com// https://xivclimbers.com/ — 200 — 15.2 KiB — 636 ms — h2https://xivclimbers.com/css/app.css?id=5194a37994c0844c09b28494b6f74f94/css/app.css?id=5194a37994c0844c09b... https://xivclimbers.com/css/app.css?id=5194a37994c0844c09b28494b6f74f94 — 200 — 5.9 KiB — 160 ms — h2https://xivclimbers.com/img/job/SMN.svg/img/job/SMN.svg https://xivclimbers.com/img/job/SMN.svg — 200 — 677 B — 161 ms — h2https://xivclimbers.com/img/job/NIN.svg/img/job/NIN.svg https://xivclimbers.com/img/job/NIN.svg — 200 — 721 B — 163 ms — h2https://xivclimbers.com/img/job/PLD.svg/img/job/PLD.svg https://xivclimbers.com/img/job/PLD.svg — 200 — 669 B — 165 ms — h2https://xivclimbers.com/img/job/MCH.svg/img/job/MCH.svg https://xivclimbers.com/img/job/MCH.svg — 200 — 783 B — 166 ms — h2https://xivclimbers.com/img/job/BLM.svg/img/job/BLM.svg https://xivclimbers.com/img/job/BLM.svg — 200 — 831 B — 168 ms — h2https://xivclimbers.com/livewire/livewire.min.js?id=df3a17f2/livewire/livewire.min.js?id=df3a17... https://xivclimbers.com/livewire/livewire.min.js?id=df3a17f2 — 200 — 50.2 KiB — 326 ms — h2https://xivclimbers.com/img/job/DRK.svg/img/job/DRK.svg https://xivclimbers.com/img/job/DRK.svg — 200 — 726 B — 169 ms — h2https://xivclimbers.com/img/job/PCT.svg/img/job/PCT.svg https://xivclimbers.com/img/job/PCT.svg — 200 — 2.8 KiB — 170 ms — h2https://xivclimbers.com/img/job/RPR.svg/img/job/RPR.svg https://xivclimbers.com/img/job/RPR.svg — 200 — 722 B — 172 ms — h2https://xivclimbers.com/img/job/GNB.svg/img/job/GNB.svg https://xivclimbers.com/img/job/GNB.svg — 200 — 727 B — 173 ms — h2https://xivclimbers.com/img/job/SAM.svg/img/job/SAM.svg https://xivclimbers.com/img/job/SAM.svg — 200 — 893 B — 320 ms — h2https://xivclimbers.com/img/job/RDM.svg/img/job/RDM.svg https://xivclimbers.com/img/job/RDM.svg — 200 — 838 B — 323 ms — h2https://xivclimbers.com/img/job/VPR.svg/img/job/VPR.svg https://xivclimbers.com/img/job/VPR.svg — 200 — 2.6 KiB — 328 ms — h2https://xivclimbers.com/img/job/MNK.svg/img/job/MNK.svg https://xivclimbers.com/img/job/MNK.svg — 200 — 643 B — 331 ms — h2https://xivclimbers.com/img/job/DNC.svg/img/job/DNC.svg https://xivclimbers.com/img/job/DNC.svg — 200 — 797 B — 334 ms — h2https://xivclimbers.com/img/job/BRD.svg/img/job/BRD.svg https://xivclimbers.com/img/job/BRD.svg — 200 — 722 B — 337 ms — h2https://xivclimbers.com/img/job/DRG.svg/img/job/DRG.svg https://xivclimbers.com/img/job/DRG.svg — 200 — 832 B — 338 ms — h2https://xivclimbers.com/img/job/WHM.svg/img/job/WHM.svg https://xivclimbers.com/img/job/WHM.svg — 200 — 623 B — 340 ms — h2https://xivclimbers.com/img/job/WAR.svg/img/job/WAR.svg https://xivclimbers.com/img/job/WAR.svg — 200 — 878 B — 342 ms — h2https://xivclimbers.com/img/job/SGE.svg/img/job/SGE.svg https://xivclimbers.com/img/job/SGE.svg — 200 — 1.0 KiB — 344 ms — h2https://xivclimbers.com/img/job/SCH.svg/img/job/SCH.svg https://xivclimbers.com/img/job/SCH.svg — 200 — 691 B — 346 ms — h2https://xivclimbers.com/img/job/AST.svg/img/job/AST.svg https://xivclimbers.com/img/job/AST.svg — 200 — 801 B — 347 ms — h2data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0…www.w3.org/2000/svg' fill='none' vi... data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0… — 200 — 0 B — 0 ms — datahttps://xivclimbers.com/favicon.ico/favicon.ico https://xivclimbers.com/favicon.ico — 200 — 270 B — 157 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
46% of JavaScript execution is third-party
First-party Third-party 110ms · 0KB · €1/mo
Unattributable
Other
Optional
Execution 110ms
Transfer 0 KB
Monthly Cost €1/mo

46% of JavaScript execution time comes from third-party scripts.

Why this matters

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

How third-party costs are calculated

Image Optimization
200 images, 146 KB total, 73 KB wasted
INFO

Image Optimization Audit

Total Images

200

Total Size

146 KB

Oversized

174

Wasted

73 KB

200 missing dimensions 200 missing lazy loading
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback