CSS フォントをロードする CSS ブロックは次のとおりです。
@font-face {
font-family: 'HelveticaNeueRegular';
src: url('../fonts/helveticaneue/helveticaneue-roman.eot');
src: url('../fonts/helveticaneue/helveticaneue-roman.eot?#iefix') format('embedded-opentype'),
url('../fonts/helveticaneue/helveticaneue-roman.woff') format('woff'),
url('../fonts/helveticaneue/helveticaneue-roman.ttf') format('truetype'),
url('../fonts/helveticaneue/helveticaneue-roman.svg#helvetica_neueregular') format('svg');
font-weight: normal;
font-style: normal;
}
フォントは/app/assets/fonts
ディレクトリにあります。
ローカルホストでは、ページをロードするとフォントがロードされませんが、Heroku ではすべてのフォントが正しくロードされます。
なにが問題ですか?