Blazor wasm、IIS、不适用于所有文件的压缩
我有一个使用 blazor wasm 独立创建并发布在 IIS 上的 Web 应用程序。 我使用自定义 web.config 来启用压缩,如下所述
我注意到并非所有文件都被压缩。 _content 文件夹下的文件(css 和 js)未压缩(没有 .br 和 .gz 版本)。
有没有办法也为该文件启用压缩?
谢谢
I have a web app created with blazor wasm standalone and published on IIS.
I use custom web.config for enable compression, as described here
I noticed that not all files are compressed. Files under _content folder (css and js) are non compressed (there is no .br and .gz version).
Is there a way to enable compression also for this files?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现了这个:
https://github.com/dotnet/aspnetcore/issues/37836
并且似乎framerork文件夹之外的文件在Net6中没有被压缩。
有办法压缩它们吗?
我应该使用 IIS 动态压缩吗?
谢谢
I found this:
https://github.com/dotnet/aspnetcore/issues/37836
and seems that files outside framerork folder are not compressed in Net6.
There is i way to compress them?
should i use IIS dynamic compression?
Thank you