Technical

Image Optimization

Image optimization is the process of reducing image file sizes and serving appropriately sized images to improve page load performance, using techniques like compression, modern formats, and responsive delivery.

Images are typically the largest resources on a web page, often accounting for 50-70% of total page weight. Unoptimized images are the number one cause of poor LCP scores. Key techniques: use modern formats (WebP for broad support, AVIF for best compression), serve responsive sizes via `srcset`, compress with quality settings (80-85% is usually indistinguishable from 100%), and set explicit dimensions to prevent CLS.

Next.js `<Image>` component handles most optimization automatically: it generates responsive `srcset`, lazy-loads by default, prevents CLS with required dimensions, and can serve WebP/AVIF via the built-in image optimization API.

For hero images that impact LCP: use the `priority` prop (preloads the image), ensure the image is served from a CDN, and consider using a smaller placeholder (blur) while the full image loads. Indxel flags images missing alt text, explicit dimensions, and modern format usage.

Stop shipping broken SEO

Indxel validates your metadata, guards your CI/CD pipeline, and monitors indexation — so you never miss an SEO issue again.