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::
i
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
Document Compression
Action
Document response served uncompressed
REVIEW
Document 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
Asset Compression
1 of 3 asset hosts serve text uncompressed
REVIEW
1 of 3 asset hosts serve text uncompressed
Info::
✓
www.celebrade.ie serves assets with brotli (assets: 68)
Got: www.celebrade.ie (text/css)
Info::
✓
cdnjs.cloudflare.com serves assets with brotli (assets: 4)
Got: cdnjs.cloudflare.com (text/css)
Warning::
!
fonts.googleapis.com serves text assets uncompressed (assets: 4)
The sampled response carries a text content type but no Content-Encoding, so the bytes go over the wire raw. Text compression typically removes 70-80% of a JS or CSS payload -- this is the single cheapest transfer win available on this host.
Got: fonts.googleapis.com (text/css)
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
Server-Timing Observability
No Server-Timing header found
REVIEW
No Server-Timing header found
Info::
i
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
1 JS blocking issue(s) detected
REVIEW
1 JS blocking issue(s) detected
Warning::
!
5 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+
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+
Font Loading
7 fonts (379 KB)
PASS
7 fonts (379 KB)
Info::
i
7 font(s) use font-display: swap (FOUT risk but functional)
Web fonts
7
379 KB total
Render-blocking
0
of 7
Dominant font-display
swap
Most common across fonts
Font loading timeline
TransferFOIT (block)FOUT (swap)
rP2Hp2ywxg089UriCZOIHTW...woff2swap
Size61 KB
Load time44 ms
Start22.9 s
RiskFOUT — text flashes from fallback to web font
wEO_EBrOk8hQLDvIAF81Vvo...woff2swap
Size14 KB
Load time39 ms
Start22.9 s
RiskFOUT — text flashes from fallback to web font
rP2Fp2ywxg089UriCZa4Hz-...woff2swap
Size74 KB
Load time49 ms
Start22.9 s
RiskFOUT — text flashes from fallback to web font
fa-solid-900.woff2woff2swap
Size111 KB
Load time52 ms
Start22.9 s
RiskFOUT — text flashes from fallback to web font
Subset this font — over 100 KB suggests Latin Extended or full glyph coverage that most pages don't need
fa-brands-400.woff2woff2swap
Size99 KB
Load time44 ms
Start22.9 s
RiskFOUT — text flashes from fallback to web font
-nFnOHM81r4j6k0gjAW3muj...woff2swap
Size17 KB
Load time14 ms
Start23.1 s
RiskFOUT — text flashes from fallback to web font
wprmenu.ttfttfswap
Size1 KB
Load time98 ms
Start23.3 s
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 ~56 KB and ~112 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
5 hints, 0 missing preconnects
PASS
5 hints, 0 missing preconnects
Info::
✓
Page uses 5 resource hint(s)
Current Resource Hints
preconnect
2
preload
2
dns-prefetch
1
prefetch—
5 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+
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
62 requests over 23568ms
INFO
HTML JavaScript CSS Images Fonts XHR/Fetch Other
Third-Party Script Cost
Per-script blocking time, transfer cost, and cache headers
INFO
80%of JavaScript execution is third-party
First-party Third-party2440ms · 250KB · €13/mo
Script
Category
Execution
Transfer
Unused
Monthly Cost
Verdict
www.celebrade.ie
www.celebrade.ie
Other
1433ms
48 KB
—
€8/mo
Costly
www.celebrade.ie
www.celebrade.ie
Other
478ms
29 KB
—
€3/mo
Costly
Google Tag Manager
www.googletagmanager.com
Tag Manager
455ms
172 KB
43%
€2/mo
Costly
www.celebrade.ie
www.celebrade.ie
Other
74ms
1 KB
—
€0/mo
Optional
www.celebrade.ie
Other
Costly
Execution1433ms
Transfer48 KB
Monthly Cost€8/mo
www.celebrade.ie
Other
Costly
Execution478ms
Transfer29 KB
Monthly Cost€3/mo
Google Tag Manager
Tag Manager
Costly
Execution455ms
Transfer172 KB
Unused43%
Monthly Cost€2/mo
www.celebrade.ie
Other
Optional
Execution74ms
Transfer1 KB
Monthly Cost€0/mo
These scripts may cost more than they're worth
www.celebrade.ie adds 1433ms and costs ~€8/month
www.celebrade.ie adds 478ms and costs ~€3/month
Google Tag Manager adds 455ms and costs ~€2/month
80% of JavaScript execution time is spent on third-party scripts. Consider auditing which scripts are essential.
Why this matters
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.celebrade.ie takes 1433ms 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
www.celebrade.ie takes 478ms 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
Google Tag Manager takes 455ms 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.