When publishing a Blazor WebAssembly website, the publish process creates .gz and .br files besides the .dll files for more performant serving. As in the screnshot:
Currently my Caddyfile looks like this:
localhost:5001 {
encode zstd gzip
try_files {path} /index.html
file_server
}
What should I add to the Caddyfile so that caddy serves the already generated .br files by default?