I am using gulp as a task runner which merge and minifying scss files for me. In this case if I try to import a regular CSS file, it will compile to a
scss
CSS
Simply do this:
/* style.scss */ @import "../../bower_components/animate.css/animate";
Just don't write file extension, Import the file without the extension, the compiler will put the file content in style.css instead of putting @import rule.
style.css
@import