@import SCSS 文件不能被编译器识别?

@import SCSS files not recognized by compiler?

它不会编译它说:

Undefined variable: "$blue-logo-color."

在 variables.scss 我有:

$blue-logo-color: #3cabf5;

在 site.scss 我有:

@import "variables.scss"

.blue-logo-color {
    color: $blue-logo-color;
}

.blue-logo-background-color {
    background-color: $blue-logo-color;
}

如何让 WebCompiler 包含编译器的全局 scss/css 文件?它似乎也无法识别来自 _Hosts.cshtml.

的全局包含

SCSS 导入语句需要分号

@import "variables.scss";