Performance

Modern image format

Detects use of modern formats like WebP and AVIF.

¿Por qué importa esto?

WebP is on average 25-35% smaller than JPEG at equal quality. AVIF is even more efficient. Modern formats reduce page weight, speed up load time and improve Core Web Vitals scores.

¿Cómo se soluciona?

Convert JPEG/PNG images to WebP or AVIF. Use <picture> with multiple sources as fallback for older browsers. Tools like Squoosh, ImageOptim or Sharp (Node.js) do this automatically.

Este check puntúa de 0 a 100. Bajo 50 es un fallo, 50 a 89 un aviso, 90 o más es bueno. Tras cada crawl ve la nota por página en el informe, con una breve explicación.

Preguntas frecuentes

Detects use of modern formats like WebP and AVIF.

WebP is on average 25-35% smaller than JPEG at equal quality. AVIF is even more efficient. Modern formats reduce page weight, speed up load time and improve Core Web Vitals scores.

Convert JPEG/PNG images to WebP or AVIF. Use <picture> with multiple sources as fallback for older browsers. Tools like Squoosh, ImageOptim or Sharp (Node.js) do this automatically.

Ejemplo

Copie el código de abajo y adapte el dominio, la marca y el contenido a su situación.

<picture>
  <source srcset="hero.avif" type="image/avif">
  <source srcset="hero.webp" type="image/webp">
  <img src="hero.jpg" alt="Hero">
</picture>
Empezar gratis