Ich mache Assets vorkompiliert und führe die Anwendung im Produktionsmodus aus. Nach dem Kompilieren beim Laden meiner Indexseite wurden in der Chrome-Konsole folgende Warnungen angezeigt:
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
Das Problem ist, dass keine Symbole geladen werden, sondern dass Quadrate angezeigt werden .
Wir haben die benutzerdefinierten Schriftarten verwendet und der Code lautet:
@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;
}
Ich weiß nicht, was an meinem Ende fehlt. Ich habe viel gesucht und auch eine Lösung ausprobiert, aber keinen Erfolg erzielt. Im Entwicklungsmodus funktioniert es einwandfrei, aber ich weiß nicht, warum es im Produktionsmodus quadratisch angezeigt wird.