When I build my site with schematics (ng new --collection=@foo/schematics myproject), everything works fine, except one thing:
The resulting angular.json file only includes a single style file in the styles array, I need it to include multiple custom style files:
Current angular.json after ng new schematics build:
"build": {
"options": {
"styles: [
"src/styles.scss"
]
}
}
Desired:
"build": {
"options": {
"styles: [
"src/styles.scss",
"src/custom1.scss",
"src/custom2.scss"
]
}
}
How can I tell the angular schematics routine that I want to include these additional stylesheets?