Bootstrap SCSS error after angular update Bootstrap SCSS error after angular update angular angular

Bootstrap SCSS error after angular update


it's not necessary to use node-sass.This problem is usually you have a problem with your sass variables like this :

$theme-color: (  primary: #ababab,  secondary: #gegege,)

adding quote to the key will solve the problem

$theme-color: (  'primary': #ababab,  'secondary': #gegege,)