Very simple gem that will add <picture/>
with your image and webp image url, example result:
<picture>
<source type="image/webp" srcset="/assets/img/affixes/10.webp" />
<source type="image/jpeg" srcset="/assets/img/affixes/10.jpg" />
<img src="/assets/img/affixes/10.jpg" class="rounded-circle" />
</picture>
In layout add forcewebp
filter, example: {{ content | forcewebp }}