浏览器打开网址报错OTS parsing error: invalid version tag,这种原因分多种情况。
Nginx部署时也会导致该错误。Nginx配置文件(nginx.conf)添加
location ~ \.(eot|otf|ttf|woff|svg)$ {
add_header Access-Control-Allow-Origin *;
}
如果不行,试试在nginx.conf
中对应的mime.types中
添加
application/font-sfnt otf ttf;
application/font-woff woff;
application/font-woff2 woff2;
application/vnd.ms-fontobject eot;
参考博客:Failed to decode downloaded font 字体图标不显示 - FastAdmin问答社区