Skip to content
https://though-threatened-trains-station.trycloudflare.com

Performance

· 26 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
83
GRADE
B
FIX
4
REVIEW
5
PASS
14
INFO
3

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

47
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
97
Accessibility Measures how accessible the page is for users with disabilities. Checks color contrast, ARIA labels, and semantic HTML.
96
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.

2.80 s

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

7.89 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.816

Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.

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

8.00 s

Page Load Progression

415 ms
829 ms
1.2 s
1.7 s
2.1 s
2.5 s
2.9 s
3.3 s
Checks
26
14 PASS 5 REVIEW 4 FIX
D
Page Weight Budget
Action
2.6 MB transferred, 28 requests
FIX
2.6 MB transferred, 28 requests
Warning::
Page weighs 2.8 MB (2.6 MB transferred)
Warning::
Images are 2.3 MB — compress or use modern formats
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Got: 2.3 MB
Info::
28 HTTP requests
Info::
Estimated 0.54 g CO2 per page load
2.6 MB / 2.4 MB budget
2.6 MB transferred
28 requests
0.54 g CO2 per page load
Images 2.3 MiB 89%
Fonts 183.8 KiB 7%
HTML 41.6 KiB 2%
Other 29.6 KiB 1%
CSS 20.2 KiB 1%
Other 2.8 KiB 0%
JavaScript 176 B 0%
0 2.4 MB 4.9 MB
Over budget

Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.

Why this matters

Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.

Source: web.dev

D
Third-Party Impact
Action
97% third-party, 0 ms blocking
FIX
97% third-party, 0 ms blocking
Warning::
Third-party code accounts for 97% of page weight (2.5 MiB of 2.6 MiB)
Info::
Third-party blocking time is low (0 ms)
97%
First-party Third-party
F
JS Execution Cost
Action
3894ms total JS execution
FIX
3894ms total JS execution
Warning::
https://though-threatened-trains-station.trycloudf...: 3314ms CPU time
Warning::
Unattributable: 580ms CPU time

Main Thread Breakdown

Other 52% Style & Layout 21% Rendering 21%
ScriptTotalScriptingParse/CompileParty
https://though-threatened-trains-station.trycloudflare.com/3314ms76ms10ms1st
Unattributable580ms23ms0ms1st
D
Page Weight Inventory
Action
28 resources · 2.6 MB · 0 KB savings available
FIX
28 resources · 2.6 MB · 0 KB savings available
Warning::
Page weight 2.6 MB exceeds 1 MB target by 1.6 MB
Got: 2.6 MB Expected: ≤ 1 MB
Warning::
23 third-party resources (97% of weight)
28 resources · 2.6 MiB · 23 third-party 1.6 MiB over 1MB target
Image 91% · 2.3 MiB
Font 7% · 183.8 KiB
Document 2% · 41.6 KiB
CSS 1% · 20.2 KiB
Other 0% · 2.8 KiB
JavaScript 0% · 176 B
B
Image Optimization
18 images, 0 KB saveable
REVIEW
18 images, 0 KB saveable
Info::
All images are well-optimized
18 images 2.3 MB
0 oversized -0 KB
17 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.
B
Compression Algorithm
Main response uses gzip; brotli would be ~20% smaller
REVIEW
Main response uses gzip; brotli would be ~20% smaller
Info::
Main HTML response uses gzip (brotli would be ~20% smaller)
All current browsers support brotli. Most CDNs (Cloudflare, Fastly, AWS CloudFront, Vercel, Netlify) can switch from gzip to brotli with a single config flag. Origin servers (nginx, Apache) need a brotli module compiled in -- nginx-brotli or Apache mod_brotli.
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.
B
JavaScript Blocking
2 JS blocking issue(s) detected
REVIEW
2 JS blocking issue(s) detected
Warning::
1 render-blocking <script src> tag(s) without async/defer
Each `<script src=...>` without `async`, `defer`, or `type="module"` blocks HTML parsing while the browser fetches and executes it. The block lasts the entire round-trip + execution time -- on slow networks this translates directly into LCP delay. Add `defer` (executes after parse, in source order) for scripts that interact with the DOM, or `async` (executes whenever ready) for analytics / independent scripts. Module scripts (`type="module"`) are deferred by default.
Warning::
Total JS execution time is 3.9 s -- over the 3.5s budget
Total JavaScript execution (parse + compile + run) across all scripts exceeds 3.5 seconds. On low-end devices that becomes 7-15+ seconds and shows up directly in TBT and INP. Reduce by: tree-shaking unused dependencies, code-splitting (dynamic `import()`), removing or deferring third-party tracking, and replacing heavy frameworks where they're not needed.
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+
Font Loading
3 fonts (184 KB)
PASS
3 fonts (184 KB)
Info::
3 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

3

184 KB total

Render-blocking

0

of 3

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 1.0 s 2.0 s 3.0 s 4.0 s 5.0 s 6.0 s 7.0 s 8.0 s FCP 2.8 s LCP 7.9 shttps://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2V8mDoQDjQSkFtoMM3T6r8E7... https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2 — 21.8 KiB — 20 ms — font-display: swaphttps://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2JTUSjIg69CK48gW7PXoo9Wl... https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2 — 8.4 KiB — 17 ms — font-display: swaphttps://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2fa-solid-900.woff2 https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2 — 153.6 KiB — 69 ms — font-display: swap
V8mDoQDjQSkFtoMM3T6r8E7... woff2 swap
Size 22 KB
Load time 20 ms
Start 357 ms
Risk FOUT — text flashes from fallback to web font
JTUSjIg69CK48gW7PXoo9Wl... woff2 swap
Size 8 KB
Load time 17 ms
Start 358 ms
Risk FOUT — text flashes from fallback to web font
fa-solid-900.woff2 woff2 swap
Size 154 KB
Load time 69 ms
Start 358 ms
Risk FOUT — text flashes from fallback to web font
  • 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 ~77 KB and ~154 ms

A+
JS Bundles
1 scripts, 0 KB unused
PASS
1 scripts, 0 KB unused
0 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://though-threatened-trains-station.trycloudflare.com/env-config.js0 KB1st
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
2 hints, 0 missing preconnects
PASS
2 hints, 0 missing preconnects
Info::
Page uses 2 resource hint(s)

Current Resource Hints

preconnect
2
preload
dns-prefetch
prefetch

2 resource hints configured

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 max-age=10 (≤ 5min) is appropriate
PASS
Main HTML max-age=10 (≤ 5min) is appropriate
Info::
Main HTML max-age=10 (≤ 5min) is appropriate
Got: public, max-age=10, must-revalidate
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+
Render-Blocking Resources
No render-blocking resources detected
PASS
No render-blocking resources detected
Info::
No render-blocking resources detected in <head>
A+
Third-Party Resources
No third-party resources detected
PASS
No third-party resources detected
A+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
No CSS performance depth issues detected
A+
Green Hosting
Whether the site is served from green-energy infrastructure
PASS

Green Hosting

This site is hosted on green energy infrastructure

Provider: Cloudflare

A
HTTP Caching
max-age=10 (10 seconds)
PASS
max-age=10 (10 seconds)
Info::
Cache-Control header is set
Got: public, max-age=10, must-revalidate
Info::
Effective TTL: 10 seconds (max-age=10)
Info::
No ETag or Last-Modified header
Conditional requests (304 Not Modified) are not possible without validators.
Cache-Control

public, max-age=10, must-revalidate

DirectiveValueMeaning
publicAny cache may store this response
max-age10Cache for 10 seconds
must-revalidateMust recheck with server after expiry
Effective TTL: 10 seconds
Network Waterfall
28 requests over 1541ms
INFO
0 ms 1.0 s 2.0 s 3.0 s 4.0 s 5.0 s 6.0 s 7.0 s 8.0 s FCP 2.8 s LCP 7.9 shttps://though-threatened-trains-station.trycloudflare.com// https://though-threatened-trains-station.trycloudflare.com/ — 200 — 41.6 KiB — 172 ms — h2https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Bebas+Neue&display=swapfonts.googleapis.com/css2?family=Sp... https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Bebas+Neue&display=swap — 200 — 1.1 KiB — 48 ms — h2https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.csscdnjs.cloudflare.com/ajax/libs/font... https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css — 200 — 19.1 KiB — 37 ms — h3https://though-threatened-trains-station.trycloudflare.com/env-config.js/env-config.js https://though-threatened-trains-station.trycloudflare.com/env-config.js — 404 — 176 B — 226 ms — h2data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 …www.w3.org/2000/svg' width='420' he... data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 … — 200 — 0 B — 0 ms — datahttps://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2fonts.gstatic.com/s/spacegrotesk/v2... https://fonts.gstatic.com/s/spacegrotesk/v22/V8mDoQDjQSkFtoMM3T6r8E7mPbF4C_k3HqU.woff2 — 200 — 21.8 KiB — 20 ms — h3https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2fonts.gstatic.com/s/bebasneue/v16/J... https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXoo9WlhyyTh89Y.woff2 — 200 — 8.4 KiB — 17 ms — h3https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2cdnjs.cloudflare.com/ajax/libs/font... https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/webfonts/fa-solid-900.woff2 — 200 — 153.6 KiB — 69 ms — h3https://though-threatened-trains-station.trycloudflare.com/api/notification/api/notification https://though-threatened-trains-station.trycloudflare.com/api/notification — 200 — 236 B — 248 ms — h2https://though-threatened-trains-station.trycloudflare.com/api/visits/top-daily-with-posters?limit=10/api/visits/top-daily-with-posters?... https://though-threatened-trains-station.trycloudflare.com/api/visits/top-daily-with-posters?limit=10 — 200 — 2.5 KiB — 235 ms — h2https://img.anili.st/media/197754img.anili.st/media/197754 https://img.anili.st/media/197754 — 200 — 120.3 KiB — 91 ms — h3https://img.anili.st/media/199111img.anili.st/media/199111 https://img.anili.st/media/199111 — 200 — 141.3 KiB — 107 ms — h3https://img.anili.st/media/169583img.anili.st/media/169583 https://img.anili.st/media/169583 — 200 — 135.9 KiB — 104 ms — h3https://img.anili.st/media/199408img.anili.st/media/199408 https://img.anili.st/media/199408 — 200 — 152.6 KiB — 107 ms — h3https://img.anili.st/media/206521img.anili.st/media/206521 https://img.anili.st/media/206521 — 200 — 127.1 KiB — 98 ms — h3https://img.anili.st/media/185542img.anili.st/media/185542 https://img.anili.st/media/185542 — 200 — 160.6 KiB — 113 ms — h3https://though-threatened-trains-station.trycloudflare.com/assets/favicon.png/assets/favicon.png https://though-threatened-trains-station.trycloudflare.com/assets/favicon.png — 200 — 29.6 KiB — 199 ms — h2https://img.anili.st/media/169582img.anili.st/media/169582 https://img.anili.st/media/169582 — 200 — 139.0 KiB — 77 ms — h3https://img.anili.st/media/202269img.anili.st/media/202269 https://img.anili.st/media/202269 — 200 — 100.0 KiB — 73 ms — h3https://img.anili.st/media/16498img.anili.st/media/16498 https://img.anili.st/media/16498 — 200 — 117.9 KiB — 97 ms — h3https://img.anili.st/media/184356img.anili.st/media/184356 https://img.anili.st/media/184356 — 200 — 151.5 KiB — 87 ms — h3https://img.anili.st/media/163132img.anili.st/media/163132 https://img.anili.st/media/163132 — 200 — 145.0 KiB — 926 ms — h3https://img.anili.st/media/124080img.anili.st/media/124080 https://img.anili.st/media/124080 — 200 — 117.5 KiB — 95 ms — h3https://img.anili.st/media/103303img.anili.st/media/103303 https://img.anili.st/media/103303 — 200 — 160.6 KiB — 98 ms — h3https://img.anili.st/media/169080img.anili.st/media/169080 https://img.anili.st/media/169080 — 200 — 187.7 KiB — 371 ms — h3https://img.anili.st/media/130622img.anili.st/media/130622 https://img.anili.st/media/130622 — 200 — 147.8 KiB — 99 ms — h3https://img.anili.st/media/197178img.anili.st/media/197178 https://img.anili.st/media/197178 — 200 — 96.2 KiB — 817 ms — h3https://img.anili.st/media/185965img.anili.st/media/185965 https://img.anili.st/media/185965 — 200 — 145.6 KiB — 31 ms — h3
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Real-User Performance (CrUX)
Field metrics from the Chrome User Experience Report
INFO

Chrome User Experience (CrUX)

Real-user metrics from the Chrome UX Report (2026-06-29 — 2026-07-26)

LCP (p75)

3092 ms

65% good

INP (p75)

197 ms

75% good

CLS (p75)

0.230

73% good

FCP (p75)

2009 ms

TTFB (p75)

1606 ms

Image Optimization
34 images, 0 KB total, 0 KB wasted
INFO

Image Optimization Audit

Total Images

34

Total Size

0 KB

Oversized

26

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

Send Feedback