I install bootstrap using npm and use scss to import it but when I try to compile,It just show endless warnings
npm install bootstrap
app.scss file
@import "~bootstrap/scss/bootstrap";
and when I run dev
npm run dev
then I see Endless loop with this warning
DEPRECATION WARNING: Using / for division is deprecated and will be removed in Dart Sass 2.0.0.
Recommendation: math.div($spacer, 4)
More info and automated migrator: https://sass-lang.com/d/slash-div
╷
253 │ 1: $spacer / 4,
│ ^^^^^^^^^^^
╵
node_modules\bootstrap\scss\_variables.scss 253:6 @import
node_modules\bootstrap\scss\bootstrap.scss 11:9 @import
resources\css\app.scss 2:9 root stylesheet
My webpack.mix
mix.js('resources/js/app.js', 'public/js')
.sass('resources/css/app.scss', 'public/css', [
//
]);