Hi folks does Hugo image processing support webp format?
Here’s my code
{{ with .Params.image }}
{{ $imageResource := ($.Site.GetPage "section" "uploads").Resources.GetMatch (strings.TrimPrefix "/uploads/" . ) }}
{{ $resized := $imageResource.Fill "100x100 Center" }}
<a><img src="{{ $resized.RelPermalink }}"></a>
{{ end }}
the result is an error like this
```
Rebuild failed:
Failed to render pages: render of "home" failed: execute of template failed: template: index.html:21:7: executing "main" at <partial "content/homepage.html" .>: error calling partial: execute of template failed: template: partials/content/homepage.html:4:7: executing "partials/content/homepage.html" at <partial "component/section/homepage/series.html" .>: error calling partial: "E:\YUDY\WEB PROJECT\CLIENTS\Peci Iming\LIVE\Site\pi\themes\phi\layouts\partials\component\section\homepage\series.html:32:61": execute of template failed: template: partials/component/section/homepage/series.html:32:61: executing "partials/component/section/homepage/series.html" at <$imageResource.Fill>: can't evaluate field Fill in type resource.Resource
```