目标:单击一个按钮,该按钮将使用新的@import选项重新编译我的SaSS。 有关如何解决此问题的任何建议?显然,您不能在构建时间之后导入。那么解决方案是否刷新并应用了不同的@import?
我尝试过if sass语句,并通过JS更改var,但太乱了。例如:
var_theme1: true;
@if $var__theme = true {
@import 'themes/theme-1';
} @else {
@import 'themes/theme-1';
}