I recently upgraded to Angular version 10.2.0 and NodeJs 14.17.3, and decided to make the switch from node-sass to sass (formerly dart-sass). I followed the necessary steps of uninstalling node-sass, deleting node_modules, clearing npm cache, and installing sass. However, I encountered errors when trying to run the program, specifically with the sass-loader. https://i.sstatic.net/6TfJd.png
Here is a snippet from my package.json:
"sass": "^1.43.4",
"sass-loader": "^10.1.1",
"simple-line-icons": "^2.4.1",
"ts-helper": "0.0.1",
"tslib": "~2.1.0",
"xlsx": "^0.15.6",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1002.2",
"@angular/cli": "^10.2.2",
"@angular/compiler-cli": "^10.2.4",
If anyone has experience with this issue, could you please offer some guidance on how to resolve it? Thank you.