css - Font Awesome and Sass fail on my project -


i working on windows , using bower, app.sass:

$fa-font-path: "/lib/font-awesome/fonts" @import 'lib/font-awesome/scss/font-awesome' 

i have same project on linux , runs well, on windows fails, bug:

enter image description here

1) not use @import css (it limits ability of browser parallel load).

recommendations

<link href='my css' rel='stylesheet'> 

2) edit

@import 'lib/font-awesome/scss/font-awesome' 

to

@import '/lib/font-awesome/scss/font-awesome' 

done


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -