According to docs on SASS, I'm supposed to specify load path by adding stylePreprocessorOptions in config file .angular.cli.json as shown below.
"root": "src",
...
"stylePreprocessorOptions": {
"includePaths": [ "./stylings" ]
}
The config file has changed its name repeatedly, now being angular.json. According to this answer, the new files has not only new syntax but also new schematics.
I can't really figure out where to put the old config specification in the new format nor whether it's changed its name or format.
How do I do this now?