gpt4 book ai didi

asp.net-mvc - Mvc 4 脚本包和 GZip

转载 作者:行者123 更新时间:2023-12-02 12:26:38 25 4
gpt4 key购买 nike

我已将站点中的所有脚本添加到非常大的包中(大约 700kb)。现在我希望 IIS 对它进行 gzip,但我不能。

我已经尝试了在这里和网上找到的所有内容,但没有任何帮助。静态 *.js 文件会被 gzip 压缩,但完整的 bundle 不会。

有什么解决办法吗?

最佳答案

检查dynamic compression在 IIS 中。必须为 IIS 和您的网站启用它。您还必须在 applicationHost.config 中拥有有效的配置。

<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<scheme name="gzip" dll="%Windir%\system32\inetsrv\gzip.dll" />
<dynamicTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/json" enabled="true" />
<add mimeType="*/*" enabled="false" />
</dynamicTypes>
<staticTypes>
<add mimeType="text/*" enabled="true" />
<add mimeType="message/*" enabled="true" />
<add mimeType="application/x-javascript" enabled="true" />
<add mimeType="application/atom+xml" enabled="true" />
<add mimeType="application/xaml+xml" enabled="true" />
<add mimeType="*/*" enabled="false" />
</staticTypes>
</httpCompression>

重要提示: bundle 响应的内容类型是 text/javascript,因此请检查您的配置是否支持此类型。

关于asp.net-mvc - Mvc 4 脚本包和 GZip,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14204206/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com