1
Hello, I am using Compass and would like to know how I can import an external file from my configured folder to Sass.
Currently the scss is like this:
@import "../../node_modules/angular-material/angular-material.min.css";
@import "compass/css3";
@import "compass/reset";
$azul : #214d8f;
body {
background-color: $azul;
}
The way out 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 the @embed
, but it didn’t work either.