我想在我的主@import
文件中的theme.scss
中添加路径前缀,但收到错误Unexpected interpolation
。
(我使用interpolation是因为变量在字符串中。)
$path-prefix: "../Scss/";
// No error on this
.test::before {
content: "#{$path-prefix}";
}
// But this produces and error
@import "#{$path-prefix}variables";