加载中...

SASS的禁用警告 Using / for division is deprecated and will be removed in Dart Sass 2.0.0.

SASS的禁用警告 Using / for division is deprecated and will be removed in Dart Sass 2.0.0.

由于Dart Sass 2.0.0不再支持用"/"表示除法,如果您恰好使用了这个方法,那么在编译的过程中,SASS会不断的跳出禁用警告:DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.。
New Image
方法一:sass-migrator

npm install -g sass-migrator
sass-migrator division **/*.scss
  • 1
  • 2

方法二: 安装低版本sass

// 上面的写法表示 1.32.6 ~ 1.32.x 都可以使用,1.33.0以上的版本才被禁止。
"sass": "~1.32.6"
  • 1
  • 2