Performance
· 15 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.
493 ms
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
794 ms
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
26 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
493 ms
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
1.24 s
Page Load Progression
DThird-Party ImpactAction84% third-party, 0 ms blockingFIX
DHTTP CachingActionno-store (uncacheable)FIX
no-store, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| no-store | — | Never cache this response |
| must-revalidate | — | Must recheck with server after expiry |
BImage Optimization5 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
BJS Bundles5 scripts, 118 KB unusedREVIEW
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.googletagmanager.com/gtm.js?id=GTM-TN5D87V | 149 KB | 64 KB (43%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=G-TB9LD0R9B6&cx=c>m=4e64h1 | 171 KB | 54 KB (32%) | ✓ | 3rd |
| https://assets.aad.org/js/RegModal.js?am2026.1 | 2 KB | — | ✓ | 3rd |
| https://assets.aad.org/js/main.js?cb=20191115 | 8 KB | — | ✗ | 3rd |
| https://googleads.g.doubleclick.net/pagead/viewthroughconversion/11481519194/?random=1776813151582&cv=11&fst=1776813151582&bg=ffffff&guid=ON&async=1&en=gtag.config>m=45je64h1v888719910z89123674680za20gzb9123674680zd9123674680xec&gcd=13l3l3l3l1l1&dma=0&tag_exp=0~115616985~115938466~115938468~117266400~117384406&u_w=800&u_h=600&url=https%3A%2F%2Faad.org%2F&rcb=18&frm=0&tiba=American%20Academy%20of%20Dermatology&hn=www.googleadservices.com&npa=0&pscdl=noapi&auid=85915425.1776813151&uaa=x86&uab=64&uafvl=Not-A.Brand%3B24.0.0.0%7CChromium%3B146.0.7680.164&uamb=0&uam=&uap=macOS&uapv=10.15.7&uaw=0&data=event%3Dgtag.config&rfmt=3&fmt=4 | 2 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
CGreen HostingActionWhether the site is served from green-energy infrastructureREVIEW
Green Hosting
No green hosting detected
APage Weight Budget849 KB transferred, 20 requestsPASS
A+Text CompressionAll text resources are compressedPASS
A+JS Execution Cost286ms total JS executionPASS
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.googletagmanager.com/gtag/js?id=G-TB9LD0R9B6&cx=c>m=4e64h1 | 106ms | 89ms | 16ms | 3rd |
| Unattributable | 101ms | 2ms | 0ms | 3rd |
| https://www.googletagmanager.com/gtm.js?id=GTM-TN5D87V | 79ms | 63ms | 14ms | 3rd |
A+Font LoadingNo web fonts (system fonts)PASS
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource HintsNo optimization neededPASS
APage Weight Inventory20 resources · 849 KB · 118 KB savings availablePASS
~118.1 KiB of savings available
| # | Resource | Type | Size | Cache | Unused | 3rd party | Issues |
|---|---|---|---|---|---|---|---|
| — | — | ||||||
| 20 resources | 848.9 KiB | ||||||
Network Waterfall20 requests over 513msINFO
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Google Tag Manager www.googletagmanager.com | Tag Manager | 106ms | 171 KB | 32% | $1/mo | Optional |
Unattributable Unattributable | Other | 101ms | 0 KB | — | $1/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 79ms | 149 KB | 43% | $1/mo | Optional |
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