I'm trying to include Bootstrap in an SCSS style sheet, as per Import bootstrap in scss project + grunt + css compile load time
The style-sheet starts with
@import "boostrap.css";
(I copied the file bootsrap.css to the same directory.)
Then, from the shell command-line, I type:
scss style.css.scss
The output of this first line is
@import url(bootstrap.css)
Shouldn't the preprocessor have have compiled boostrap.css into the output?