今天我更新了字体太棒了包到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类型是什么?