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.
17.07 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
47.14 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
147 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.041
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
29.93 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.
48.13 s
Page Load Progression
FPage Weight BudgetAction7.9 MB transferred, 102 requestsFIX
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Remove unused CSS rules with tools like PurgeCSS to reduce stylesheet size.
CSS bundle is large — purge unused styles (PurgeCSS, Tailwind JIT) to reduce CSS payload.
Source: web.dev
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
DJS Execution CostAction3454ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://cuni.cz/ | 1812ms | 48ms | 2ms | 1st |
| Unattributable | 1126ms | 31ms | 0ms | 3rd |
| https://cuni.cz/sablona/dist/js/jquery-3.7.1.min.js | 213ms | 164ms | 12ms | 1st |
| https://atlas.is.cuni.cz/matomo/js/container_CPOJRu6k.js | 167ms | 113ms | 40ms | 3rd |
| https://cuni.cz/sablona/dist/js/jquery-ui.min.js | 82ms | 45ms | 35ms | 1st |
| https://cuni.cz/sablona/dist/js/cookie-consent.js | 54ms | 25ms | 26ms | 1st |
DJS BundlesAction20 scripts, 470 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://cuni.cz/sablona/dist/js/jquery-ui.min.js | 250 KB | 223 KB (89%) | ✓ | 1st |
| https://atlas.is.cuni.cz/matomo/js/container_CPOJRu6k.js | 253 KB | 99 KB (39%) | ✓ | 3rd |
| https://cuni.cz/sablona/dist/js/jquery-3.7.1.min.js | 86 KB | 58 KB (68%) | ✓ | 1st |
| https://cuni.cz/sablona/dist/js/altcha.min.js | 66 KB | 49 KB (75%) | ✓ | 1st |
| https://cuni.cz/sablona/dist/js/bundle.js?v=2026.04.16.17 | 71 KB | 41 KB (58%) | ✓ | 1st |
| https://www.youtube.com/s/player/1bb6ee63/player_embed_es6.vflset/en_US/base.js | 436 KB | — | ✓ | 3rd |
| https://www.youtube.com/s/_/ytembeds/_/js/k=ytembeds.base.en_US.CYE28xQTWxU.2021.O/am=AAAABA/d=1/exm=base,root/ed=1/br=1/rs=AGKMywGc21Bc99sDrhbnjOkQlq7nTfp_WQ/m=r78Drb | 146 KB | — | ✓ | 3rd |
| https://www.youtube.com/s/_/ytembeds/_/js/k=ytembeds.base.en_US.CYE28xQTWxU.2021.O/am=AAAABA/d=1/br=1/rs=AGKMywGc21Bc99sDrhbnjOkQlq7nTfp_WQ/m=root,base | 193 KB | — | ✓ | 3rd |
| https://www.youtube.com/s/player/218d9d92/player_embed_es6.vflset/en_US/base.js | 436 KB | — | ✓ | 3rd |
| https://www.youtube.com/s/_/ytembeds/_/js/k=ytembeds.base.en_US.CYE28xQTWxU.2021.O/am=AAAABA/d=1/br=1/rs=AGKMywGc21Bc99sDrhbnjOkQlq7nTfp_WQ/m=root,base | 0 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
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
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
DPage Weight InventoryAction102 resources · 7.9 MB · 470 KB savings availableFIX
~469.9 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 102 resources | 7.9 MiB | ||||||
DHTTP CachingActionno-store (uncacheable)FIX
no-store, no-cache, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| no-store | — | Never cache this response |
| no-cache | — | Cache but always revalidate first |
| must-revalidate | — | Must recheck with server after expiry |
CImage OptimizationAction50 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
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
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
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
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
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
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
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
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
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
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
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
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
AThird-Party Impact24% third-party, 0 ms blockingPASS
A+Text CompressionAll text resources are compressedPASS
A+Font Loading9 fonts (180 KB)PASS
Web fonts
9
180 KB total
Render-blocking
0
of 9
Dominant font-display
swap
Most common across fonts
Font loading timeline
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 CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints3 hints, 0 missing preconnectsPASS
Current Resource Hints
3 resource hints configured
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
Network Waterfall102 requests over 40858msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 1126ms | 0 KB | — | Kč139/mo | Costly |
atlas.is.cuni.cz atlas.is.cuni.cz | Other | 167ms | 253 KB | 39% | Kč21/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 1126ms and costs ~Kč139/month
Unattributable takes 1126ms 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