Summary:
I am running a .net 9.0 web app. I have pre-compressed some bundle.js files using gzip to produce bundle.js.gz files.
When requesting bundle.js files, the compressed .gz files are successfully being returned, however, the content encoding is set to content-encoding: br in the response headers.
Expected Outcome:
I was expecting the response headers to include the content-encoding: gzip header for pre-compressed .gz files.