Tag: ruby on rails 4.1

无法解码下载的字体,OTSparsing错误:无效的版本标记+导轨4

我正在做资产预编译,并在生产模式下运行应用程序。 编译后,当我加载我的索引页时,我在Chrome控制台中得到以下警告: 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; } 我不知道从我的最后失去了什么。 我search了很多,也尝试了解决scheme,但没有得到任何成功。在开发模式下工作正常,但不知道为什么在生产模式显示广场。