Closed themire closed 6 years ago
@themire I've been looking into this and It should be working one of these ways:
If you want to user @import
, you have to include .css
to the end (my answer from here was wrong). So It should be working with @import 'font_awesome5_webfont.css'
in your application.scss
file.
Second way is to require it in your application.css
. So *= require font_awesome5_webfont
should be working too.
Working, thanks.
If I do
@import 'font_awesome5_webfont';
in my .scss file I get the following output in my CSS.If I just do
@import 'fontawesome-all';
it works.