"매 lab + field, mobile-first, CWV-driven". Google PSI = Lighthouse (lab simulation) + CrUX (real Chrome user data). 매 SEO ranking 의 official signal — Core Web Vitals (LCP, INP, CLS) score 의 결정. 2026 standard: INP replaced FID as interactivity metric.
매 핵심
매 두 가지 data
Lab data (Lighthouse): 매 controlled simulation — emulated mobile, throttled 4G CPU. Reproducible, 매 dev iteration 에 적합.
Field data (CrUX): 매 real Chrome users 의 28-day rolling aggregate. 매 actual user experience 반영. 매 SEO ranking 에 사용.
매 Core Web Vitals (2026)
LCP (Largest Contentful Paint): largest visible element render. Good ≤ 2.5s.
INP (Interaction to Next Paint): 75th percentile interaction responsiveness. Good ≤ 200ms. (replaced FID in 2024)
CLS (Cumulative Layout Shift): visual stability score. Good ≤ 0.1.
매 Lighthouse score weighting (v11+)
FCP 10%, LCP 25%, TBT 30%, CLS 25%, SI 10%.
Score: 0-100 — 매 90+ green, 50-89 orange, <50 red.
매 응용
SEO optimization (CWV signal in Google ranking).
Conversion rate (faster site → 매 7% lift per 100ms).
// Break long tasks with scheduler.yield() (2026 baseline)
asyncfunctionprocessItems(items){for(constitemofitems){process(item);if(navigator.scheduling?.isInputPending()){awaitscheduler.yield();}}}
Optimize CLS
/* Reserve space for images */img{aspect-ratio:16/9;width:100%;height:auto;}/* Avoid late-injected content shifting layout */.ad-slot{min-height:250px;}