When ever I compile using gulp-sass
on node the following scss
@import "_bootstrap-sprockets";
@import "_bootstrap";
I get this in the output
src: url(font-path("bootstrap/glyphicons-halflings-regular.eot"));
However, the font-path
thing isn't in the precompiled boostrap
src: url('../fonts/glyphicons-halflings-regular.eot');
Why does mine have font-path
? Is this a sass function, and if so why isn't it calling it and how do I get an error and how do I resolve this error?