Chrome is defaulting to the jpg/png files when webp files are available. I ran a website Audit through Lighthouse and it recommended properly sizing images and using "next-gen" formats. After changing the files to webp (and creating multiple sizes of the file), I added the files under a picture tag. When I open developer tools now, Lighthouse gives me green lights for both next-gen formats and multiple file sizes now but only defaults to the jpg/png format.
<picture>
<source srcset="imgs/img_480w.webp" media="(max-width:480px)" type="image/webp">
<source srcset="img/img_280w.webp" media="(max-width:280px)" type="image/webp">
<source srcset="imgs/imgs.jpg" type="image/jpeg">
<!-- always defaults to here --> <img src="grid_img/LoW_grid.jpg" alt="Image" class="tm-img">
It is definitely getting the files, they are not showing as not-found. And when I do not include the last line, nothing shows up at all. The files did convert to webp formats properly because I can open them in Chrome.