Hello, I'm using the compass and would like to know how I can import an external file from my sass-configured folder.
This is how scss works:
@import "../../node_modules/angular-material/angular-material.min.css";
@import "compass/css3";
@import "compass/reset";
$azul : #214d8f;
body {
background-color: $azul;
}
The output he gives me is this:
@import url(../../node_modules/angular-material/angular-material.min.css); ...
What I need to do is that this angular-material.min.css is actually included in my final css, not just referenced. I tested @embed
, but it did not work either.