Skip to content

PERF001 · Image dimensions

Severity: warning

Every <img> element must have explicit width and height attributes set. Images missing either attribute are flagged.

An <img> without explicit width and height triggers layout shift (CLS) as it loads, hurting Core Web Vitals and visual stability.

Add explicit width and height attributes to the <img>:

<img src="/hero.jpg" width="1200" height="630" alt="" />