Is it possible to prevent SASS from merging files included via @import
?
For development, i would like to maintain the references of the original CSS (in my setup compiled from SASS already).
Is it possible to prevent SASS from merging files included via @import
?
For development, i would like to maintain the references of the original CSS (in my setup compiled from SASS already).
The docs for the
@import
rule says that:And explain that there is some circumstances under which it will compile to a CSS @import rule:
.css
.http://
.url()
.@import
has any media queries.The following rules will tell SASS to merge imported files:
The following rules will tell SASS to NOT merge imported files: