I have a problem in my .scss files after migration of Angular & Angular Material from 11 to 12 version
Code block that causes such error is next:
What can I do to fix it?
I have a problem in my .scss files after migration of Angular & Angular Material from 11 to 12 version
Code block that causes such error is next:
What can I do to fix it?
node-sass is deprecated
To solve the problem I ran: npm uninstall node-sass
and next npm i sass --save-dev
. Solved