Performance
· 27 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.
12.77 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
20.80 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
2.11 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.119
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
12.77 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.
28.88 s
Page Load Progression
FPage Weight BudgetAction10.9 MB transferred, 153 requestsFIX
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
Subset fonts to include only used characters, or switch to system font stacks.
Font payload is large — subset to used glyphs only, or fall back to system fonts (zero load time).
Source: web.dev font loading
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
DThird-Party ImpactAction100% third-party, 0 ms blockingFIX
FJS Execution CostAction7115ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.chilisjobs.com/ | 1178ms | 99ms | 5ms | 3rd |
| Unattributable | 1160ms | 245ms | 0ms | 3rd |
| https://www.googletagmanager.com/gtag/destination?id=AW-753725155&cx=c>m=4e6562 | 897ms | 805ms | 84ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-MZD5W3Z | 742ms | 573ms | 143ms | 3rd |
| https://www.chilisjobs.com/cdn-cgi/challenge-platform/scripts/jsd/main.js | 681ms | 609ms | 12ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-SKQ80NCNWD&cx=c>m=4e6562 | 454ms | 368ms | 84ms | 3rd |
| https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/jquery-3.5.1.min.js | 430ms | 318ms | 23ms | 3rd |
| https://cdn.cookielaw.org/scripttemplates/202509.1.0/otBannerSdk.js | 420ms | 305ms | 49ms | 3rd |
| https://connect.facebook.net/en_US/fbevents.js | 364ms | 279ms | 83ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-10948122074&cx=c>m=4e6562 | 282ms | 192ms | 89ms | 3rd |
Showing top 10 of 14 scripts
DJS BundlesAction38 scripts, 429 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.googletagmanager.com/gtag/js?id=G-SKQ80NCNWD&cx=c>m=4e6562 | 172 KB | 67 KB (39%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-MZD5W3Z | 163 KB | 67 KB (41%) | ✓ | 3rd |
| https://cdn.cookielaw.org/scripttemplates/202509.1.0/otBannerSdk.js | 122 KB | 64 KB (53%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/destination?id=AW-753725155&cx=c>m=4e6562 | 137 KB | 60 KB (43%) | ✓ | 3rd |
| https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/jquery-ui.min.js | 67 KB | 60 KB (89%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-10948122074&cx=c>m=4e6562 | 141 KB | 53 KB (38%) | ✓ | 3rd |
| https://connect.facebook.net/en_US/fbevents.js | 97 KB | 37 KB (38%) | ✓ | 3rd |
| https://www.chilisjobs.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1 | 31 KB | 22 KB (72%) | ✓ | 3rd |
| https://www.chilisjobs.com/cdn-cgi/challenge-platform/h/g/scripts/jsd/fe6331af5207/main.js? | 11 KB | — | ✓ | 3rd |
| https://www.chilisjobs.com/wp-content/themes/chilis/assets/dist/js/bootstrap.min.js | 15 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
FPage Weight InventoryAction153 resources · 10.9 MB · 429 KB savings availableFIX
~429.1 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 153 resources | 10.9 MiB | ||||||
CImage OptimizationAction28 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
CCompression AlgorithmActionMain response served uncompressedREVIEW
BMain HTML Cache-ControlMain HTML max-age=600 (~10min)REVIEW
BServer-Timing ObservabilityNo Server-Timing header foundREVIEW
BJavaScript Blocking2 JS blocking issue(s) detectedREVIEW
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
A+Text CompressionAll text resources are compressedPASS
A+Font Loading7 fonts (710 KB)PASS
Web fonts
7
710 KB total
Render-blocking
0
of 7
Dominant font-display
swap
Most common across fonts
Font loading timeline
- Convert to woff2 for ~30% smaller file size
- Convert to woff2 for ~30% smaller file size
- Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
- Convert to woff2 for ~30% smaller file size
- Convert to woff2 for ~30% smaller file size
- Convert to woff2 for ~30% smaller file size
- 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 ~368 KB and ~736 ms
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
A+HTTP/3 (QUIC)HTTP/3 advertised via Alt-SvcPASS
A+LCP Image PreloadLCP preload audit not availablePASS
A+Server Response Intelligence1 server-response signal(s) detectedPASS
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
ACSS Performance Depth1 CSS depth issue(s) detectedPASS
AHTTP Cachingmax-age=600 (10 minutes)PASS
max-age=600, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| max-age | 600 | Cache for 10 minutes |
| must-revalidate | — | Must recheck with server after expiry |
Network Waterfall153 requests over 4736msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
www.chilisjobs.com www.chilisjobs.com | Other | 1178ms | 14 KB | — | $20/mo | Costly |
Unattributable Unattributable | Other | 1160ms | 0 KB | — | $20/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 897ms | 137 KB | 43% | $15/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 742ms | 163 KB | 41% | $13/mo | Costly |
www.chilisjobs.com www.chilisjobs.com | Other | 681ms | 0 KB | — | $12/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 454ms | 172 KB | 39% | $8/mo | Costly |
www.chilisjobs.com www.chilisjobs.com | Other | 430ms | 32 KB | — | $7/mo | Costly |
OneTrust cdn.cookielaw.org | Consent | 420ms | 122 KB | 53% | $7/mo | Essential |
Facebook Pixel connect.facebook.net | Advertising | 364ms | 97 KB | 38% | $6/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 282ms | 141 KB | 38% | $5/mo | Costly |
Facebook Pixel connect.facebook.net | Advertising | 230ms | 32 KB | — | $4/mo | Costly |
tags.srv.stackadapt.com tags.srv.stackadapt.com | Other | 144ms | 8 KB | — | $2/mo | Optional |
www.chilisjobs.com www.chilisjobs.com | Other | 66ms | 67 KB | 89% | $1/mo | Optional |
www.chilisjobs.com www.chilisjobs.com | Other | 66ms | 31 KB | 72% | $1/mo | Optional |
These scripts may cost more than they're worth
- www.chilisjobs.com adds 1178ms and costs ~$20/month
- Unattributable adds 1160ms and costs ~$20/month
- Google Tag Manager adds 897ms and costs ~$15/month
- Google Tag Manager adds 742ms and costs ~$13/month
- www.chilisjobs.com adds 681ms and costs ~$12/month
- Google Tag Manager adds 454ms and costs ~$8/month
- www.chilisjobs.com adds 430ms and costs ~$7/month
- Facebook Pixel adds 364ms and costs ~$6/month
- Google Tag Manager adds 282ms and costs ~$5/month
- Facebook Pixel adds 230ms and costs ~$4/month
100% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
When third-party JS execution time exceeds your own, performance gains from frontend work are capped by code you don't own.
Learn more ▾ ▴
Every millisecond of third-party JS competes with your own for main-thread time. If their share is bigger than yours, optimization on your code base barely moves the needle. Audit, defer, or remove third-parties before further frontend optimization. Use Lighthouse's third-party audit to identify the worst offenders.
Source: web.dev
www.chilisjobs.com takes 1178ms 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
Unattributable takes 1160ms 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
Google Tag Manager takes 897ms 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
Google Tag Manager takes 742ms 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
www.chilisjobs.com takes 681ms 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
Google Tag Manager takes 454ms 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
www.chilisjobs.com takes 430ms 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
53% of OneTrust's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
Facebook Pixel takes 364ms 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
Google Tag Manager takes 282ms 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
Facebook Pixel takes 230ms 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
89% of www.chilisjobs.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
72% of www.chilisjobs.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev
Real-User Performance (CrUX)Field metrics from the Chrome User Experience ReportINFO
Chrome User Experience (CrUX)
Real-user metrics from the Chrome UX Report (2026-04-11 — 2026-05-08)
LCP (p75)
2369 ms
76% good
INP (p75)
93 ms
93% good
CLS (p75)
0.130
69% good
FCP (p75)
1274 ms
TTFB (p75)
851 ms
Image Optimization27 images, 1358 KB total, 1041 KB wastedINFO
Image Optimization Audit
Total Images
27
Total Size
1358 KB
Oversized
16
Wasted
1041 KB