Skip to content
https://overheadgame.com

Performance

· 26 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.
SCORE
90
GRADE
A
FIX
1
REVIEW
7
PASS
15
INFO
3

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

81
Performance Overall performance score (0–100) based on Core Web Vitals and other metrics. 90+ is good.
95
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.

970 ms

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

2.27 s

Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.

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

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

2.83 s

Page Load Progression

573 ms
1.1 s
1.7 s
2.3 s
2.9 s
3.4 s
4.0 s
4.6 s
Checks
26
15 PASS 7 REVIEW 1 FIX
F
JS Execution Cost
Action
3624ms total JS execution
FIX
3624ms total JS execution
Warning::
https://overheadgame.com/_next/static/chunks/0ckmw...: 2627ms CPU time
Warning::
https://overheadgame.com/_next/static/chunks/05rgw...: 611ms CPU time
Warning::
Unattributable: 274ms CPU time
Info::
https://overheadgame.com/: 112ms CPU time
Info::
Third-party scripts: 274ms (8% of total)

Main Thread Breakdown

Other 73% Script Evaluation 21%
ScriptTotalScriptingParse/CompileParty
https://overheadgame.com/_next/static/chunks/0ckmwdinhsmkh.js2627ms154ms4ms1st
https://overheadgame.com/_next/static/chunks/05rgwsld0z.fz.js611ms561ms38ms1st
Unattributable274ms11ms0ms3rd
https://overheadgame.com/112ms10ms9ms1st
B
JS Bundles
8 scripts, 51 KB unused
REVIEW
8 scripts, 51 KB unused
Warning::
https://overheadgame.com/_next/static/chunks/05rgw...: 29 KB unused (41%)
Consider code splitting or tree shaking to reduce unused code.
Warning::
https://overheadgame.com/_next/static/chunks/16nwd...: 22 KB unused (58%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 51 KB
51 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://overheadgame.com/_next/static/chunks/05rgwsld0z.fz.js71 KB29 KB (41%)1st
https://overheadgame.com/_next/static/chunks/16nwd95-vqx.2.js39 KB22 KB (58%)1st
https://overheadgame.com/_next/static/chunks/171hxc0u17_8b.js8 KB1st
https://overheadgame.com/_next/static/chunks/14qv0zyfqj203.js11 KB1st
https://overheadgame.com/_next/static/chunks/turbopack-0hzwfrdrein8z.js5 KB1st
https://overheadgame.com/_next/static/chunks/031ki__yyhwdn.js2 KB1st
https://overheadgame.com/_next/static/chunks/15s4cd8bhy3a2.js13 KB1st
https://overheadgame.com/_next/static/chunks/0ckmwdinhsmkh.js8 KB1st

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

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

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.
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.6 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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW

Green Hosting

No green hosting detected

B
HTTP Caching
public, max-age=0, must-revalidate
REVIEW
public, max-age=0, must-revalidate
Info::
Cache-Control header is set
Got: public, max-age=0, must-revalidate
Info::
ETag present — enables conditional (304) responses
Cache-Control

public, max-age=0, must-revalidate

DirectiveValueMeaning
publicAny cache may store this response
max-age0Cache for 0 seconds
must-revalidateMust recheck with server after expiry
A+
Page Weight Budget
227 KB transferred, 14 requests
PASS
227 KB transferred, 14 requests
Info::
Page weighs 617 KB (227 KB transferred)
Info::
14 HTTP requests
Info::
Estimated 0.05 g CO2 per page load
227 KB / 2.4 MB budget
227 KB transferred
14 requests
0.05 g CO2 per page load
JavaScript 156.2 KiB 69%
Fonts 58.8 KiB 26%
HTML 6.0 KiB 3%
CSS 3.8 KiB 2%
Images 1.6 KiB 1%
Other 404 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+
Image Optimization
1 images, 0 KB saveable
PASS
1 images, 0 KB saveable
Info::
All images are well-optimized
1 images 2 KB
0 oversized -0 KB
0 legacy format
0 missing dimensions CLS risk
A+
Font Loading
2 fonts (59 KB)
PASS
2 fonts (59 KB)
Info::
2 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

2

59 KB total

Render-blocking

0

of 2

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 500 ms 1.0 s 1.5 s 2.0 s FCP 970 ms LCP 2.3 shttps://overheadgame.com/_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2797e433ab948586e-s.p.0.... https://overheadgame.com/_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2 — 30.8 KiB — 175 ms — font-display: swaphttps://overheadgame.com/_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2caa3a2e1cccd8315-s.p.16... https://overheadgame.com/_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2 — 28.0 KiB — 145 ms — font-display: swap
797e433ab948586e-s.p.0.... woff2 swap
Size 31 KB
Load time 175 ms
Start 77 ms
Risk FOUT — text flashes from fallback to web font
caa3a2e1cccd8315-s.p.16... woff2 swap
Size 28 KB
Load time 145 ms
Start 78 ms
Risk FOUT — text flashes from fallback to web font
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 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
3 hints, 0 missing preconnects
PASS
3 hints, 0 missing preconnects
Warning::
2 font preload(s) missing `crossorigin` -- font will be downloaded twice
Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: /_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2, /_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2. Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.
Info::
Page uses 3 resource hint(s)

Current Resource Hints

preconnect
preload
3
dns-prefetch
prefetch

3 resource hints configured

Fonts are always fetched as crossorigin=anonymous; a preload without the attribute creates a different cache key, so the browser refetches when the actual font request happens. Sample: /_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2, /_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2. Add `crossorigin` (or `crossorigin="anonymous"`) to each preload.

Why this matters

Performance issues directly impact user engagement and conversion rates.

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=0 (≤ 5min) is appropriate
PASS
Main HTML max-age=0 (≤ 5min) is appropriate
Info::
Main HTML max-age=0 (≤ 5min) is appropriate
Got: public, max-age=0, must-revalidate
A+
Server Response Intelligence
2 server-response signal(s) detected
PASS
2 server-response signal(s) detected
Info::
`Vary` header declared: rsc, next-router-state-tree, next-router-prefetch, next-router-segment-prefetch
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::
`ETag` present -- conditional GET supported
A+
Page Weight Inventory
14 resources · 227 KB · 51 KB savings available
PASS
14 resources · 227 KB · 51 KB savings available
Info::
Within 1MB page-weight target
Got: 227 KB
Info::
~51 KB of savings available
14 resources · 226.7 KiB · 0 third-party Within 1MB page-weight target
JavaScript 69% · 156.2 KiB
Font 26% · 58.8 KiB
Document 3% · 6.0 KiB
CSS 2% · 3.8 KiB
Image 1% · 2.0 KiB

~51.4 KiB of savings available

Remove unused JavaScript: 51.4 KiB
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
Network Waterfall
14 requests over 882ms
INFO
0 ms 500 ms 1.0 s 1.5 s 2.0 s FCP 970 ms LCP 2.3 shttps://overheadgame.com// https://overheadgame.com/ — 200 — 6.0 KiB — 53 ms — h2https://overheadgame.com/_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2/_next/static/media/797e433ab948586... https://overheadgame.com/_next/static/media/797e433ab948586e-s.p.0.q-h669a_dqa.woff2 — 200 — 30.8 KiB — 175 ms — h2https://overheadgame.com/_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2/_next/static/media/caa3a2e1cccd831... https://overheadgame.com/_next/static/media/caa3a2e1cccd8315-s.p.16t1db8_9y2o~.woff2 — 200 — 28.0 KiB — 145 ms — h2https://overheadgame.com/_next/static/chunks/0owszf9mu.q1z.css/_next/static/chunks/0owszf9mu.q1z.... https://overheadgame.com/_next/static/chunks/0owszf9mu.q1z.css — 200 — 3.8 KiB — 162 ms — h2https://overheadgame.com/_next/image?url=%2Fhero.png&w=750&q=75/_next/image?url=%2Fhero.png&w=750&... https://overheadgame.com/_next/image?url=%2Fhero.png&w=750&q=75 — 200 — 1.6 KiB — 625 ms — h2https://overheadgame.com/_next/static/chunks/171hxc0u17_8b.js/_next/static/chunks/171hxc0u17_8b.... https://overheadgame.com/_next/static/chunks/171hxc0u17_8b.js — 200 — 7.9 KiB — 161 ms — h2https://overheadgame.com/_next/static/chunks/14qv0zyfqj203.js/_next/static/chunks/14qv0zyfqj203.... https://overheadgame.com/_next/static/chunks/14qv0zyfqj203.js — 200 — 10.9 KiB — 173 ms — h2https://overheadgame.com/_next/static/chunks/05rgwsld0z.fz.js/_next/static/chunks/05rgwsld0z.fz.... https://overheadgame.com/_next/static/chunks/05rgwsld0z.fz.js — 200 — 70.9 KiB — 237 ms — h2https://overheadgame.com/_next/static/chunks/16nwd95-vqx.2.js/_next/static/chunks/16nwd95-vqx.2.... https://overheadgame.com/_next/static/chunks/16nwd95-vqx.2.js — 200 — 39.3 KiB — 218 ms — h2https://overheadgame.com/_next/static/chunks/turbopack-0hzwfrdrein8z.js/_next/static/chunks/turbopack-0hzw... https://overheadgame.com/_next/static/chunks/turbopack-0hzwfrdrein8z.js — 200 — 4.6 KiB — 186 ms — h2https://overheadgame.com/_next/static/chunks/031ki__yyhwdn.js/_next/static/chunks/031ki__yyhwdn.... https://overheadgame.com/_next/static/chunks/031ki__yyhwdn.js — 200 — 1.6 KiB — 177 ms — h2https://overheadgame.com/_next/static/chunks/15s4cd8bhy3a2.js/_next/static/chunks/15s4cd8bhy3a2.... https://overheadgame.com/_next/static/chunks/15s4cd8bhy3a2.js — 200 — 13.3 KiB — 208 ms — h2https://overheadgame.com/_next/static/chunks/0ckmwdinhsmkh.js/_next/static/chunks/0ckmwdinhsmkh.... https://overheadgame.com/_next/static/chunks/0ckmwdinhsmkh.js — 200 — 7.8 KiB — 172 ms — h2https://overheadgame.com/favicon.svg/favicon.svg https://overheadgame.com/favicon.svg — 200 — 404 B — 162 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
8% of JavaScript execution is third-party
First-party Third-party 274ms · 0KB · €3/mo
Unattributable
Other
Costly
Execution 274ms
Transfer 0 KB
Monthly Cost €3/mo

These scripts may cost more than they're worth

  • Unattributable adds 274ms and costs ~€3/month

Unattributable takes 274ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.

Why this matters

This script has high main-thread execution time — optimize hot paths or defer.

Source: web.dev

How third-party costs are calculated

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

Image Optimization Audit

Total Images

1

Total Size

1 KB

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

Send Feedback