I\'m researching how to add custom fonts to my Rails app, e.g. by adding a fonts folder in the assets folder - and I cannot find an \"official\" Rails way on ho
fonts
The only way that worked for me was this:
@font-face { font-family: 'Vorname'; src: asset-url('Vorname.otf') format('truetype'), asset-url('Vorname.ttf') format('truetype'); }