I have setup SASS and Grunt. Every time I save my main.scss
file, it will compile it to CSS. Perfect.
Now, in the top of main.scss
I import bootstrap:
@import "bootstrap";
However, when I do this, each SCSS -> CSS compile takes around 8 seconds!
Is there a smarter way to import bootstrap? I specially import it, because I need to make use of extend
, i.e.:
.button {
@extend .btn;
}