12
Verwenden von Schriftarten mit der Rails-Asset-Pipeline
Ich habe einige Schriftarten in meiner Scss-Datei wie folgt konfiguriert: @font-face { font-family: 'Icomoon'; src: asset-url('icoMoon.eot?#iefix', font) format('embedded-opentype'), asset-url('icoMoon.woff', font) format('woff'), asset-url('icoMoon.ttf', font) format('truetype'), asset-url('icoMoon.svg#Icomoon', font) format('svg'); } Die eigentliche Schriftartdatei wird in / app / assets / fonts / gespeichert. Ich habe config.assets.paths << Rails.root.join("app", "assets", "fonts")meiner application.rb-Datei hinzugefügt …