Performance
· 14 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.
1.01 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.65 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
1.01 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.002
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
5.13 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.
8.71 s
Page Load Progression
FPage Weight BudgetAction20.2 MB transferred, 296 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
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 ImpactAction90% third-party, 0 ms blockingFIX
FJS Execution CostAction6297ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| Unattributable | 1046ms | 289ms | 0ms | 3rd |
| https://www.nike.com/ | 986ms | 342ms | 26ms | 1st |
| https://www.nike.com/assets/vendor/react/18.3.1/react.production.min.js | 964ms | 861ms | 0ms | 1st |
| https://www.nike.com/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/ips.js?KP_UIDz=0YR39A4eUfHL1vmCdwPqOCZN3Axnp0FNNNaEE6aiHW6yNykFmw1PgxckQ8nTcQszErg3HNa7O5A7JvjY6HZ0seTfk14NnDnUoE0atpjW9NsJA0sUV9QNsTK5eXCkTkble1OiQDdxSC30RuiHOVv6Q9LpIYiUfY6V3K3n4fxqAO9RMWmw&x-kpsdk-v=j-1.2.308&x-kpsdk-im=AALV7ybq0ktZgQZ4rFqv4xL-zOKGeVkkBdBES6cBt2_DZ3vIBejQ_VlXhPpcDAVHYrACfG8Dul4FG-xZ5uHZ6272pKk | 922ms | 862ms | 17ms | 1st |
| https://static-assets.nike.com/video-player/2.2.0/nike-one-video-player.min.js | 415ms | 134ms | 24ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-NTF2X45&l=marketingClientDataLayer | 315ms | 270ms | 23ms | 3rd |
| https://www.nike.com/_next/static/chunks/739.e084fb5e3f935e6a.js | 284ms | 49ms | 1ms | 1st |
| https://www.nike.com/static/analytics-client/public/config.chunk.0a0e99.js | 198ms | 186ms | 1ms | 1st |
| https://www.nike.com/149e9513-01fa-4fb0-aad4-566afd725d1b/2d206a39-8ed7-437e-a3be-862e0f06eea3/p.js | 154ms | 91ms | 4ms | 1st |
| https://js-agent.newrelic.com/nr-spa-1.312.1.min.js | 121ms | 91ms | 5ms | 3rd |
Showing top 10 of 21 scripts
FJS BundlesAction133 scripts, 928 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://static-assets.nike.com/video-player/2.2.0/nike-one-video-player.min.js | 191 KB | 84 KB (45%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-QTVTHYLBQS&l=marketingClientDataLayer&cx=c>m=4e6411 | 169 KB | 64 KB (38%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/destination?id=AW-1019013699&l=marketingClientDataLayer&cx=c>m=4e6411 | 144 KB | 60 KB (42%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-4171764&l=marketingClientDataLayer | 129 KB | 60 KB (47%) | ✓ | 3rd |
| https://analytics.tiktok.com/i18n/pixel/static/main.MWE0ZWQ3ZWQwMA.js | 106 KB | 60 KB (57%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/destination?id=AW-947143981&l=marketingClientDataLayer&cx=c>m=4e6411 | 132 KB | 59 KB (45%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-8128335&l=marketingClientDataLayer&cx=c>m=4e6411 | 128 KB | 59 KB (46%) | ✓ | 3rd |
| https://www.nike.com/static/bellotti/playcard/_reco/public/c636b1d17225aef30e14/index.umd.js | 77 KB | 56 KB (74%) | ✓ | 1st |
| https://www.nike.com/static/cssf/async-chat/_reco/public/0237b8daa38595b79c21/index.umd.js | 89 KB | 54 KB (62%) | ✓ | 1st |
| https://www.googletagmanager.com/gtm.js?id=GTM-NTF2X45&l=marketingClientDataLayer | 179 KB | 51 KB (29%) | ✓ | 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
CImage OptimizationAction40 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
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 Loading5 fonts (212 KB)PASS
Web fonts
5
212 KB total
Render-blocking
0
of 5
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 HintsNo optimization neededPASS
A+HTTP Cachingmax-age=822 (13 minutes)PASS
max-age=822
| Directive | Value | Meaning |
|---|---|---|
| max-age | 822 | Cache for 13 minutes |
Network Waterfall296 requests over 0msINFO
Performance analysis not available for this result.
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 1046ms | 0 KB | — | $6/mo | Costly |
static-assets.nike.com static-assets.nike.com | Other | 415ms | 191 KB | 45% | $2/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 315ms | 179 KB | 29% | $2/mo | Costly |
js-agent.newrelic.com js-agent.newrelic.com | Other | 121ms | 30 KB | — | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 119ms | 169 KB | 38% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 102ms | 132 KB | 45% | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 96ms | 144 KB | 42% | $1/mo | Optional |
analytics.tiktok.com analytics.tiktok.com | Other | 84ms | 106 KB | 57% | $0/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 83ms | 128 KB | 46% | $0/mo | Optional |
Facebook Pixel connect.facebook.net | Advertising | 51ms | 95 KB | 39% | $0/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 1046ms and costs ~$6/month
- static-assets.nike.com adds 415ms and costs ~$2/month
- Google Tag Manager adds 315ms and costs ~$2/month
Unattributable takes 1046ms 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
static-assets.nike.com takes 415ms 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 315ms 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
57% of analytics.tiktok.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