Convert to WebP on a Budget

A command line snippet to convert to a preferred size of WebP file.

Published 18th January, 2024

Command to convert any size of png file to a webp file with a max size of 100kB:

cwebp -size 100000 input.png -o output.webp

Would be nice to set a max size limit in Next.js when loading images automatically...