I have started using Angular multi-projects workspace. So I created a style
folder which contains all my shared scss files.
In the angular.json
file, for each project I have added the following in the architect/build/options section:
"stylePreprocessorOptions": {
"includePaths": [
"styles"
]
}
but when I run ng build my-project
or ng serve my-project
the main.scss file under styles
folder is not included.
This file basically imports all the scss files that are in the subfolders under `styles´ like this
@import "base/base";
@import "base/typography";
@import "base/helpers";
@import "base/fonts";
What am I doing wrong ?