gpt4 book ai didi

fonts - .woff2 字体的正确 MIME 类型

转载 作者:行者123 更新时间:2023-12-03 14:38:49 24 4
gpt4 key购买 nike

今天我更新了 Font Awesome打包到 4.3.0 并注意到 woff2 添加了字体。该文件在 CSS 中链接,因此我需要配置 nginx 以正确提供 woff2 文件。

目前我在 nginx 配置中有这个块用于字体:

location ~* \.(otf|eot|woff|ttf)$ {
types {font/opentype otf;}
types {application/vnd.ms-fontobject eot;}
types {font/truetype ttf;}
types {application/font-woff woff;}
}

woff2 字体的正确 mime 类型是什么?

最佳答案

在 IIS 中,您可以通过将以下内容添加到项目的 web.config 来声明 WOFF2 字体文件的 MIME 类型:

<system.webServer>
<staticContent>
<remove fileExtension=".woff2" />
<mimeMap fileExtension=".woff2" mimeType="font/woff2" />
</staticContent>
</system.webServer>

更新 :
根据最新的 W3C 编辑器草案 WOFF2 规范,mime 类型可能会发生变化。见 Appendix A: Internet Media Type Registration 6.5. WOFF 2.0 其中陈述了最新的 建议格式为 font/woff2

关于fonts - .woff2 字体的正确 MIME 类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28235550/

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