Questions tagged [dart-sass]
93 questions
0
votes
2 answers
Why do I get a "Module parse failed" when compiling my SASS module?
I'm getting the following error every time I run my CRA app, though everything runs correctly:
Compiling...
Files successfully emitted, waiting for typecheck results...
Compiled with warnings.
./src/app/theme/colors.module.scss.d.ts 4:12
Module…

Sammy
- 3,395
- 7
- 49
- 95
0
votes
1 answer
Conflict when using Sass and CSS at the same time
When I add css to rules along with sass, it gives an error. And if you remove the rules for CSS, then everything is fine. I am tried to use node-sass and sass, but there is no difference. Here is the my config file:
'use strict';
const path =…
-1
votes
1 answer
Error when switching from node-sass to sass(dart-sass) on Angular 10
I am using Angular version 10.2.0, NodeJs 14.17.3 and would like to switch from node-sass to package sass (formerly dart-sass). I uninstalled node-sass, deleted node_modules, cleared npm cache, npm install and installed sass. When I run the program,…
user10114552