Performance6 min read·Updated

Lighthouse: 'Serve Images in Next-Gen Formats' — Fix with WebP

The audit is literal: those URLs are JPEG/PNG. Convert them to WebP, update the `src`, re-run. You do not need AVIF to go green.

What 'next-gen' means here

Lighthouse means WebP or AVIF (sometimes JPEG XL in experiments). WebP is the one you can produce locally on any machine, including Safari with this converter's WASM encoder.

Why it matters

  • The audit names files. That is your to-do list.
  • CMS themes often hardcode .jpg extensions.
  • CDNs can transcode, but a real .webp file is simpler to reason about.

How to do it

  1. Download each flagged file.
  2. Bulk convert. Keep meaningful filenames, change extension to .webp.
  3. Update HTML/CMS. Redirect old URLs if they are indexed.

Settings that work

Match visual quality to the original. 80% is the default starting point.

Convert a batch in your browser. Nothing is uploaded.

Put it into practice

Convert your images to WebP right now, free and privately in your browser.

Open the converter

Frequently asked questions

Not for this audit. Use WebP.

Only for rare legacy browsers. See the picture-element guide.

Keep reading

Performance6 min read

PageSpeed image audits

Clear 'next-gen formats', 'properly size images' and 'efficiently encode' by converting a batch to WebP at the right width.

Read more
Formats5 min read

WebP browser support

Which browsers support WebP? Complete 2026 compatibility table for Chrome, Safari, Firefox, Edge, iOS, Android, plus email clients, CMSs and how to add a fallback.

Read more
SEO6 min read

Migrate a site to WebP

A practical migration: convert in batches, update HTML, redirect old .jpg URLs, keep OG JPEGs.

Read more