在SCSS文件的@import中的变量上使用插值时,PhpStorm错误“意外插值”

时间:2018-11-28 16:50:44

标签: sass phpstorm

我想在我的主@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";

Snapshot of the "unexpected interpolation" error in PhpStorm

0 个答案:

没有答案