I am moving an app to Angular 7 app StackBlitz that was developed in VSCode. The angular.json has been adjusted to work with SCSS. Other SCSS files seem to be found successfully. But StackBlitz is complaining that it cannot find a file that is in the exact path of the error message. Please advise. I've attached a graphic.
Asked
Active
Viewed 1,314 times
1

Gonçalo Peres
- 11,752
- 3
- 54
- 83

user1558897
- 111
- 1
- 6
-
Actually the error is *inside* the `account.component.scss` file. It's probably the `@import "../../../variables.scss";` line, as the file is actually called `_variables.scss` from the looks of it. (Bear in mind there seem to be a few files with the same issue) – user184994 Nov 01 '18 at 22:01
-
Yes, the error moves from file to file. It is working fine in VSCode. Normally scss ignores the underscore. But sure enough adding the underscore made the difference in StackBlitz. Thanks – user1558897 Nov 01 '18 at 22:29