P2 · MediumPerformance
No modern image formats
Images not using WebP or AVIF
Code: no_modern_image_format
Why it matters
Images not using WebP or AVIF. Slow experiences increase bounce rates and hurt Core Web Vitals scores. Google uses these metrics as a direct ranking signal.
How to fix
Use WebP/AVIF with fallback
html<picture>
<source srcset="image.avif" type="image/avif">
<source srcset="image.webp" type="image/webp">
<img src="image.jpg" alt="Description" width="800" height="600">
</picture>Related checks in Performance
Run a free scan to check your site
Get a complete audit in under 2 minutes. No account required.
Start Free Scan