当前位置: 首页 > 工具软件 > OTS > 使用案例 >

OTS parsing error: invalid version tag

宗晟
2023-12-01

浏览器打开网址报错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问答社区

 类似资料:

相关阅读

相关文章

相关问答