我正在进行资产预编译,并在生产模式下运行应用程序。编译后,当我加载我的索引页面,我得到了以下警告在铬控制台:
Failed to decode downloaded font: http://localhost:3000/fonts/ionicons.ttf?v=2.0.0
prospects:1 OTS parsing error: invalid version tag
Failed to decode downloaded font: http://localhost:3000/fonts/ionicons.woff?v=2.0.0
prospects:1 OTS parsing error: invalid version tag
问题是它没有加载图标,而是显示方块 。
我们使用了自定义字体,代码是:
@font-face {
font-family: 'icomoon';
src: font-url('icomoon.eot');
src: font-url('icomoon.eot?#iefix') format('embedded-opentype'),
font-url('icomoon.ttf') format('truetype'),
font-url('icomoon.woff') format('woff'),
font-url('icomoon.svg#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
我不知道我这边少了什么。我找了很多,也尝试了解决方案,但没有得到任何成功。在开发模式它的工作良好,但不知道为什么它的显示方块在生产模式。