这个方便的option少了,引用的导入文件将仅用于解析变量,但不会内联。有没有办法对postcss-import或任何其他类似的PostCSS插件做同样的事情?
下面的代码块是这种行为在Less中的工作原理。我希望与PostCSS达成类似的行为。
@import (reference) "foo.less";
/* Content of "foo.less" won't be inlined but variables on this different file will be resolved */
.rules {
width: @big; /* Declared in "foo.less". It will be resolved to 1200px (for example) */
}