Skip to content
https://watsnaydouch.site

Performance

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

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

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

12.46 s

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

26.67 s

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

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

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

26.67 s

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
26
14 PASS 6 REVIEW 3 FIX
F
Page Weight Budget
Action
4.8 MB transferred, 23 requests
FIX
4.8 MB transferred, 23 requests
Critical::
Page weighs 7.3 MB (4.8 MB transferred)
Warning::
JavaScript is 1.9 MB — consider code splitting or lazy loading
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
Got: 1.9 MB
Warning::
Images are 1.4 MB — compress or use modern formats
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Got: 1.4 MB
Info::
23 HTTP requests
Info::
Estimated 1.0 g CO2 per page load
4.8 MB / 2.4 MB budget
4.8 MB transferred
23 requests
1.0 g CO2 per page load
JavaScript 1.9 MiB 40%
Images 1.4 MiB 29%
Other 1.1 MiB 22%
Other 219.7 KiB 4%
Fonts 169.8 KiB 3%
CSS 23.8 KiB 0%
HTML 1.8 KiB 0%
Other 563 B 0%
0 2.4 MB 4.9 MB
Over budget

Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.

Why this matters

JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.

Source: web.dev

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

F
JS Bundles
Action
2 scripts, 520 KB unused
FIX
2 scripts, 520 KB unused
Warning::
https://watsnaydouch.site/assets/index-CPYssjIP.js: 520 KB unused (27%)
Consider code splitting or tree shaking to reduce unused code.
Info::
Total unused JavaScript: 520 KB
520 KB unused JavaScript

Downloaded but never executed on this page.

ScriptSizeUnusedMinifiedParty
https://watsnaydouch.site/assets/index-CPYssjIP.js1962 KB520 KB (27%)1st
https://watsnaydouch.site/registerSW.js0 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

D
Page Weight Inventory
Action
23 resources · 4.8 MB · 520 KB savings available
FIX
23 resources · 4.8 MB · 520 KB savings available
Warning::
Page weight 4.8 MB exceeds 1 MB target by 3.8 MB
Got: 4.8 MB Expected: ≤ 1 MB
Info::
~520 KB of savings available
Info::
9 third-party resources (2% of weight)
Info::
4 resources over 200KB
23 resources · 4.8 MiB · 9 third-party 3.8 MiB over 1MB target
Image 52% · 2.5 MiB
JavaScript 40% · 1.9 MiB
Media 4% · 219.7 KiB
Font 3% · 169.8 KiB
CSS 0% · 23.8 KiB
Document 0% · 1.8 KiB
Other 0% · 563 B

~520.4 KiB of savings available

Remove unused JavaScript: 520.4 KiB
C
JS Execution Cost
Action
1470ms total JS execution
REVIEW
1470ms total JS execution
Warning::
Unattributable: 725ms CPU time
Warning::
https://watsnaydouch.site/assets/index-CPYssjIP.js: 379ms CPU time
Warning::
https://watsnaydouch.site/: 366ms CPU time

Main Thread Breakdown

Other 50% Script Evaluation 24% Style & Layout 23%
ScriptTotalScriptingParse/CompileParty
Unattributable725ms20ms0ms1st
https://watsnaydouch.site/assets/index-CPYssjIP.js379ms330ms12ms1st
https://watsnaydouch.site/366ms4ms1ms1st
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
Document Compression
Document response uses gzip; brotli would be ~20% smaller
REVIEW
Document 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.
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
REVIEW
public, max-age=0
Info::
Cache-Control header is set
Got: public, max-age=0
Info::
ETag present — enables conditional (304) responses
Info::
Last-Modified header present
Cache-Control

public, max-age=0

DirectiveValueMeaning
publicAny cache may store this response
max-age0Cache for 0 seconds
A+
Third-Party Impact
2% third-party, 0 ms blocking
PASS
2% third-party, 0 ms blocking
Info::
Third-party code accounts for 2% of page weight (91.6 KiB of 4.8 MiB)
Info::
Third-party blocking time is low (0 ms)
98%
First-party Third-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
2 images, 0 KB saveable
PASS
2 images, 0 KB saveable
Info::
All images are well-optimized
2 images 1.4 MB
0 oversized -0 KB
2 legacy format
0 missing dimensions CLS risk
A+
Font Loading
8 fonts (170 KB)
PASS
8 fonts (170 KB)
Info::
8 font(s) use font-display: swap (FOUT risk but functional)

Web fonts

8

170 KB total

Render-blocking

0

of 8

Dominant font-display

swap

Most common across fonts

Font loading timeline
Transfer FOIT (block) FOUT (swap)
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s 12.0 s 14.0 s 16.0 s 18.0 s 20.0 s 22.0 s 24.0 s 26.0 s 28.0 s FCP 12.5 s LCP 26.7 shttps://watsnaydouch.site/fonts/KhmerOS_muollight.ttfKhmerOS_muollight.ttf https://watsnaydouch.site/fonts/KhmerOS_muollight.ttf — 80.3 KiB — 285 ms — font-display: swaphttps://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7p4HM-aGW-rO.woff2LDIxapCSOBg7S-QT7p4HM-a... https://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7p4HM-aGW-rO.woff2 — 8.8 KiB — 37 ms — font-display: swaphttps://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pa8FvOreefkkbIx.woff2LDI2apCSOBg7S-QT7pa8FvO... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pa8FvOreefkkbIx.woff2 — 9.1 KiB — 42 ms — font-display: swaphttps://fonts.gstatic.com/s/koulen/v30/AMOQz46as3KIBPemjno8sOUcU0Cz.woff2AMOQz46as3KIBPemjno8sOU... https://fonts.gstatic.com/s/koulen/v30/AMOQz46as3KIBPemjno8sOUcU0Cz.woff2 — 11.6 KiB — 67 ms — font-display: swaphttps://fonts.gstatic.com/s/battambang/v26/uk-mEGe7raEw-HjkzZabPnmp4g5y_o5z7Q.woff2uk-mEGe7raEw-HjkzZabPnm... https://fonts.gstatic.com/s/battambang/v26/uk-mEGe7raEw-HjkzZabPnmp4g5y_o5z7Q.woff2 — 21.4 KiB — 53 ms — font-display: swaphttps://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pb0EPOreefkkbIx.woff2LDI2apCSOBg7S-QT7pb0EPO... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pb0EPOreefkkbIx.woff2 — 8.8 KiB — 64 ms — font-display: swaphttps://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pbYF_OreefkkbIx.woff2LDI2apCSOBg7S-QT7pbYF_O... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pbYF_OreefkkbIx.woff2 — 9.2 KiB — 66 ms — font-display: swaphttps://fonts.gstatic.com/s/battambang/v26/uk-lEGe7raEw-HjkzZabNsmM9yhQ86RJ5IxcMg.woff2uk-lEGe7raEw-HjkzZabNsm... https://fonts.gstatic.com/s/battambang/v26/uk-lEGe7raEw-HjkzZabNsmM9yhQ86RJ5IxcMg.woff2 — 20.7 KiB — 64 ms — font-display: swap
KhmerOS_muollight.ttf ttf swap
Size 80 KB
Load time 285 ms
Start 283 ms
Risk FOUT — text flashes from fallback to web font
  • Convert to woff2 for ~30% smaller file size
LDIxapCSOBg7S-QT7p4HM-a... woff2 swap
Size 9 KB
Load time 37 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
LDI2apCSOBg7S-QT7pa8FvO... woff2 swap
Size 9 KB
Load time 42 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
AMOQz46as3KIBPemjno8sOU... woff2 swap
Size 12 KB
Load time 67 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
uk-mEGe7raEw-HjkzZabPnm... woff2 swap
Size 21 KB
Load time 53 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
LDI2apCSOBg7S-QT7pb0EPO... woff2 swap
Size 9 KB
Load time 64 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
LDI2apCSOBg7S-QT7pbYF_O... woff2 swap
Size 9 KB
Load time 66 ms
Start 1.1 s
Risk FOUT — text flashes from fallback to web font
uk-lEGe7raEw-HjkzZabNsm... woff2 swap
Size 21 KB
Load time 64 ms
Start 1.1 s
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)

Fixing the unchecked items could save ~24 KB and ~48 ms

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
Info::
Page uses 3 resource hint(s)

Current Resource Hints

preconnect
2
preload
1
dns-prefetch
prefetch

3 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=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
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::
Both `ETag` and `Last-Modified` present -- efficient revalidation supported
The page returns both `ETag` (content hash) and `Last-Modified` (timestamp) headers. Browsers can issue conditional GETs with `If-None-Match` or `If-Modified-Since`; the server returns 304 Not Modified for unchanged content, saving bandwidth. ETag is the more reliable of the two (timestamps fail in DST transitions and clock skew).
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
JavaScript Blocking
1 JS blocking issue(s) detected
PASS
1 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.
A+
CSS Performance Depth
No CSS performance depth issues detected
PASS
No CSS performance depth issues detected
Info::
No CSS performance depth issues detected
Asset Compression
No text asset hosts to measure
INFO
No text asset hosts to measure
Info::
No third-party or subdomain host served enough text assets to measure
Asset compression is measured per host, from one HEAD request against a sampled resource. Pages that serve all their JS and CSS from the document's own origin are covered by the document compression check instead.
Network Waterfall
23 requests over 1926ms
INFO
0 ms 2.0 s 4.0 s 6.0 s 8.0 s 10.0 s 12.0 s 14.0 s 16.0 s 18.0 s 20.0 s 22.0 s 24.0 s 26.0 s 28.0 s FCP 12.5 s LCP 26.7 shttps://watsnaydouch.site// https://watsnaydouch.site/ — 200 — 1.8 KiB — 270 ms — h2https://watsnaydouch.site/fonts/KhmerOS_muollight.ttf/fonts/KhmerOS_muollight.ttf https://watsnaydouch.site/fonts/KhmerOS_muollight.ttf — 200 — 80.3 KiB — 285 ms — h2https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Koulen&family=Moul&family=Rajdhani:wght@300;400;500;600;700&display=swapfonts.googleapis.com/css2?family=Ba... https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Koulen&family=Moul&family=Rajdhani:wght@300;400;500;600;700&display=swap — 200 — 1.3 KiB — 96 ms — h2https://watsnaydouch.site/assets/index-CPYssjIP.js/assets/index-CPYssjIP.js https://watsnaydouch.site/assets/index-CPYssjIP.js — 200 — 1.9 MiB — 497 ms — h2https://watsnaydouch.site/assets/index-BDDfduw9.css/assets/index-BDDfduw9.css https://watsnaydouch.site/assets/index-BDDfduw9.css — 200 — 21.7 KiB — 271 ms — h2https://watsnaydouch.site/registerSW.js/registerSW.js https://watsnaydouch.site/registerSW.js — 200 — 214 B — 258 ms — h2https://watsnaydouch.site/manifest.webmanifest/manifest.webmanifest https://watsnaydouch.site/manifest.webmanifest — 200 — 563 B — 300 ms — h2https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Koulen&family=Moul&family=Rajdhani:wght@300;400;500;600;700&display=swapfonts.googleapis.com/css2?family=Ba... https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Koulen&family=Moul&family=Rajdhani:wght@300;400;500;600;700&display=swap — 200 — 843 B — 52 ms — h3https://watsnaydouch.site/success.mp3/success.mp3 https://watsnaydouch.site/success.mp3 — 206 — 151.0 KiB — 213 ms — h2https://watsnaydouch.site/fail.mp3/fail.mp3 https://watsnaydouch.site/fail.mp3 — 206 — 68.7 KiB — 213 ms — h2https://watsnaydouch.site/logo.png/logo.png https://watsnaydouch.site/logo.png — 200 — 1000.5 KiB — 242 ms — h2https://watsnaydouch.site/icon.png/icon.png https://watsnaydouch.site/icon.png — 200 — 444.6 KiB — 233 ms — h2https://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7p4HM-aGW-rO.woff2fonts.gstatic.com/s/rajdhani/v17/LD... https://fonts.gstatic.com/s/rajdhani/v17/LDIxapCSOBg7S-QT7p4HM-aGW-rO.woff2 — 200 — 8.8 KiB — 37 ms — h3https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pa8FvOreefkkbIx.woff2fonts.gstatic.com/s/rajdhani/v17/LD... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pa8FvOreefkkbIx.woff2 — 200 — 9.1 KiB — 42 ms — h3https://fonts.gstatic.com/s/koulen/v30/AMOQz46as3KIBPemjno8sOUcU0Cz.woff2fonts.gstatic.com/s/koulen/v30/AMOQ... https://fonts.gstatic.com/s/koulen/v30/AMOQz46as3KIBPemjno8sOUcU0Cz.woff2 — 200 — 11.6 KiB — 67 ms — h3https://fonts.gstatic.com/s/battambang/v26/uk-mEGe7raEw-HjkzZabPnmp4g5y_o5z7Q.woff2fonts.gstatic.com/s/battambang/v26/... https://fonts.gstatic.com/s/battambang/v26/uk-mEGe7raEw-HjkzZabPnmp4g5y_o5z7Q.woff2 — 200 — 21.4 KiB — 53 ms — h3https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pb0EPOreefkkbIx.woff2fonts.gstatic.com/s/rajdhani/v17/LD... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pb0EPOreefkkbIx.woff2 — 200 — 8.8 KiB — 64 ms — h3https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pbYF_OreefkkbIx.woff2fonts.gstatic.com/s/rajdhani/v17/LD... https://fonts.gstatic.com/s/rajdhani/v17/LDI2apCSOBg7S-QT7pbYF_OreefkkbIx.woff2 — 200 — 9.2 KiB — 66 ms — h3https://fonts.gstatic.com/s/battambang/v26/uk-lEGe7raEw-HjkzZabNsmM9yhQ86RJ5IxcMg.woff2fonts.gstatic.com/s/battambang/v26/... https://fonts.gstatic.com/s/battambang/v26/uk-lEGe7raEw-HjkzZabNsmM9yhQ86RJ5IxcMg.woff2 — 200 — 20.7 KiB — 64 ms — h3https://watsnaydouch.site/favicon.ico/favicon.ico https://watsnaydouch.site/favicon.ico — 200 — 16.7 KiB — 207 ms — h2https://watsnaydouch.site/icon-192.png/icon-192.png https://watsnaydouch.site/icon-192.png — 200 — 71.3 KiB — 217 ms — h2https://watsnaydouch.site/icon.svg/icon.svg https://watsnaydouch.site/icon.svg — 200 — 1003.1 KiB — 234 ms — h2https://watsnaydouch.site/favicon.ico/favicon.ico https://watsnaydouch.site/favicon.ico — 200 — 82 B — 200 ms — h2
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Image Optimization
4 images, 3442 KB total, 441 KB wasted
INFO

Image Optimization Audit

Total Images

4

Total Size

3442 KB

Oversized

1

Wasted

441 KB

4 missing dimensions 1 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