今天我将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 类型是什么?