Skip to content

Rule · Performance

Image served in a legacy format

perf/image-legacy-formatwarnvoid perfupdated

Why it matters

AVIF and WebP are typically 25-50% smaller than JPEG/PNG at the same quality and are supported by every current browser.

How to fix it

Serve AVIF or WebP (content negotiation, <picture>, or next/image). Keep SVG for vector art.

Example

tsx
<picture><source srcset="/hero.avif" type="image/avif"><img src="/hero.jpg" alt="…"></picture>

void perf reports 25 rules in this category. Core Web Vitals and bytes: LCP, CLS, TBT, TTFB, JavaScript, CSS, fonts, images, caching and compression, measured as the median of several runs on a throttled mobile and a desktop profile.