以下是我当前项目的主要scss文件。 我也在后来导入的css_ve.scss中使用变量。 生成的css文件按预期工作,但Scout在日志面板中抛出错误,因为它无法在css_ve.scss中找到变量声明。 这是一个小问题,但我想知道如何防止这些错误发生。 一种解决方案是仅为变量创建一个scss文件并从所有其他文件中导入它,但我想避免在我的项目中分散太多的scss文件。
提前致谢!
/* VARIABLES ------------------------------ */
/* fonts */
$font-family-1: 'Arial', 'Meiryo', 'MS Gothic', 'MS UI Gothic', 'MS PGothic', 'Arial Unicode';
$font-family-2: 'MS UI Gothic', 'MS PGothic', 'Arial Unicode';
$font-size: 14px;
/* colors */
$color-1: #000000; /* black */
$color-2: #ffffff; /* white */
$color-3: #CCCCCC; /* grey */
$color-4: #00A3AF; /* green */
$color-5: #FF6600; /* orange */
/* IMPORTS ------------------------------ */
/* validationEngine */
@import "validation_engine/css_ve.scss";
/* STYLES ------------------------------ */
...
答案 0 :(得分:0)
@import "validation_engine/css_ve"; perhaps?