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
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
C
Compression Algorithm
Action
Main response served uncompressed
REVIEW
Main response served uncompressed
Info::
i
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
Main HTML Cache-Control
No Cache-Control header on main HTML response
REVIEW
No Cache-Control header on main HTML response
Info::
i
Main HTML response has no Cache-Control header
Without an explicit Cache-Control, browsers fall back to heuristic caching (~10% of Last-Modified age). Set `Cache-Control: no-cache` or `max-age=300` for HTML to control freshness explicitly -- prevents stale auth state and SPA shell drift.
B
JavaScript Blocking
1 JS blocking issue(s) detected
REVIEW
1 JS blocking issue(s) detected
Warning::
!
6 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.
C
Green Hosting
Action
Whether the site is served from green-energy infrastructure
REVIEW
Green Hosting
No green hosting detected
A+
Page Weight Budget
662 KB transferred, 34 requests
PASS
662 KB transferred, 34 requests
Info::
✓
Page weighs 2.7 MB (662 KB transferred)
Info::
✓
34 HTTP requests
Info::
i
Estimated 0.14 g CO2 per page load
662 KBtransferred
34 requests
0.14 g CO2 per page load
JavaScript373.9 KiB57%
HTML185.2 KiB28%
Fonts62.0 KiB9%
CSS21.1 KiB3%
Images8.9 KiB1%
Other8.4 KiB1%
Other1.7 KiB0%
Other383 B0%
02.4 MB4.9 MB
Under budget
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
Warning::
!
data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
Warning::
!
https://www.mopar.eu/content/dam/mopar/cross/foote... is missing width/height — may cause layout shift
Set explicit width and height to prevent CLS.
2images9 KB
0oversized-0 KB
1legacy format
2missing dimensionsCLS risk
Set explicit width and height to prevent CLS.
Why this matters
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.
Why this matters
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
A+
Font Loading
3 fonts (62 KB)
PASS
3 fonts (62 KB)
Info::
i
3 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
3
62 KB total
Render-blocking
0
of 3
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
TitlingGothicFBComp-Sta...woffswap
Size20 KB
Load time35 ms
Start354 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
TitlingGothicFBNarrow-L...woffswap
Size21 KB
Load time36 ms
Start355 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
TitlingGothicFBNarrow-S...woffswap
Size21 KB
Load time36 ms
Start355 ms
RiskFOUT — text flashes from fallback to web font
Convert to woff2 for ~30% smaller file size
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 ~19 KB and ~38 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
1 hints, 0 missing preconnects
PASS
1 hints, 0 missing preconnects
Info::
✓
Page uses 1 resource hint(s)
Current Resource Hints
preconnect—
preload
1
dns-prefetch—
prefetch—
1 resource hints configured
A+
HTTP/3 (QUIC)
HTTP/3 advertised via Alt-Svc
PASS
HTTP/3 advertised via Alt-Svc
Info::
✓
HTTP/3 (QUIC) is supported
First-load mobile users on cellular networks see meaningful latency improvements with HTTP/3. The QUIC transport collapses TLS + TCP handshakes into one and recovers faster from packet loss.
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+
Server-Timing Observability
3 Server-Timing entries advertised
PASS
3 Server-Timing entries advertised
Info::
✓
Server-Timing header advertises 3 timing entries
A+
Server Response Intelligence
1 server-response signal(s) detected
PASS
1 server-response signal(s) detected
Info::
i
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.
Each `<link rel="stylesheet">` without a non-blocking `media` attribute holds up the first paint. Browsers download all of them before painting any content. Consolidate into 1-2 critical-path stylesheets; defer non-critical CSS via `<link rel="stylesheet" media="print" onload="this.media='all'">` or via the loadCSS pattern; inline above-the-fold CSS in `<style>` to short-circuit the request entirely.
Network Waterfall
34 requests over 2311ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
66%of JavaScript execution is third-party
First-party Third-party712ms · 228KB · €8/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
Google Tag Manager
www.googletagmanager.com
Tag Manager
302ms
131 KB
51%
€3/mo
Costly
s.go-mpulse.net
s.go-mpulse.net
Other
195ms
56 KB
50%
€2/mo
Optional
assets.adobedtm.com
assets.adobedtm.com
Other
143ms
40 KB
—
€2/mo
Optional
Other
71ms
0 KB
—
€1/mo
Optional
Google Tag Manager
Tag Manager
Costly
Execution302ms
Transfer131 KB
Unused51%
Monthly Cost€3/mo
s.go-mpulse.net
Other
Optional
Execution195ms
Transfer56 KB
Unused50%
Monthly Cost€2/mo
assets.adobedtm.com
Other
Optional
Execution143ms
Transfer40 KB
Monthly Cost€2/mo
Other
Optional
Execution71ms
Transfer0 KB
Monthly Cost€1/mo
These scripts may cost more than they're worth
Google Tag Manager adds 302ms and costs ~€3/month
66% of JavaScript execution time comes from third-party scripts.
Why this matters
Third-party scripts (analytics, ads, social, A/B testing) often dominate execution time — every one is a perf-and-privacy tax.
Learn more ▾▴
Each third-party script is a black box: you don't control when it loads, what it executes, or how much it grows. They often account for a major share of total blocking time on average sites (HTTP Archive's Web Almanac documents the trend). Audit which ones you actually need, defer the rest, and use facade patterns (lite-youtube, lite-vimeo) for embedded media.
Source: web.dev / HTTP Archive Web Almanac
Google Tag Manager takes 302ms 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
51% of Google Tag Manager's code is unused. The script may be loading features you don't use.
Why this matters
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.