Core Web Vitals: small ranking factor, large conversion factor

You are deciding how much engineering time Core Web Vitals deserve against everything else on the list.

Short answer

Core Web Vitals are a confirmed but lightweight ranking signal, used mainly as a tiebreaker between pages of similar relevance. They are a much larger conversion factor: slow, unresponsive and shifting pages lose people who already arrived. Optimise them for the users you are paying to acquire, and treat any ranking benefit as a bonus.

The three metrics, plainly

Largest Contentful Paint is how long until the main content appears. Interaction to Next Paint is the delay between a click and any visible response. Cumulative Layout Shift is how much things move while loading. Loading, responsiveness, stability, which is a reasonable summary of whether a page feels broken.

How much they move rankings

Less than the amount of writing about them implies. Google has been clear that relevance dominates and that vitals act as a differentiator between comparable pages. A fast irrelevant page does not outrank a slow relevant one, and no amount of green scores substitutes for answering the query.

Why the conversion argument is stronger

Every visitor is expensive, whether you paid in money or in months of content. A page that loses people because a button does not respond is wasting acquisition you already completed. That loss is measurable on your own site today, unlike the ranking effect, which is diffuse and contested.

Field data, not lab data

A synthetic test runs once on simulated hardware and reports a tidy number. Your users are on real devices and real networks. Where the two disagree, the field data is the one describing your business, and the gap between them is often large enough to change what you would work on.

INP is where the surprises are

Loading metrics get attention because they are visible in every audit. Responsiveness is the one that correlates with people concluding your interface is broken, and it is dominated by JavaScript work on the main thread, which is exactly what a modern app does most of.

Layout shift is a self-inflicted wound

Almost all of it comes from images without dimensions, fonts swapping late, and content injected above what the user is reading. Each has a well-known fix, none is architecturally difficult, and the payoff is that people stop clicking the wrong thing.

How to sequence it

Measure your field data first. Fix whichever metric is worst for real users, not whichever is reddest in the lab. Re-measure after a fortnight. This is one of the few areas of SEO with a fast feedback loop, because you are not waiting on an engine to reconsider anything.

Questions

Will fixing Core Web Vitals raise my rankings?
Possibly slightly, and only where you are already competitive on relevance. Expecting a jump from green scores alone is the most common disappointment in this area.
Which metric should I fix first?
Whichever is worst in your field data. For JavaScript-heavy applications that is usually INP, because the work happens on the main thread and blocks the response to a click.
Is a perfect Lighthouse score worth chasing?
No. It is a lab simulation, and the last few points typically cost more than they return. Get out of the poor range on real-user data and spend the rest of the time on the page content.

Measured, not asserted

On ihatepdf.cv, taken from zero to 100,542 users, field data across 132,748 sessions showed 37.16% of sessions containing a dead click, someone clicking something that did not respond, alongside an INP of 296ms against a 200ms good threshold. A lab run on developer hardware would have reported a far prettier number than what those sessions actually experienced.

Free tool for this: Crawler View. No account, nothing uploaded.

Where this goes deeper

Every number on this page comes from one complete dataset: one product taken from zero to 100K+ users on search alone, with nothing spent on advertising. The full argument is Chapter 11 and Chapter 19 of the book. Five chapters are free to read.

Related