Добавьте это к своему angular.json
"projects": {
"sometest": {
"projectType": "application",
"schematics": {
"@schematics/angular:component": { // this one
"style": "less"
}
},
"root": "",
"sourceRoot": "src",
"prefix": "app",
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"outputPath": "dist/sometest",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"assets": [
"src/favicon.ico",
"src/assets"
],
"styles": [
"src/styles.less" // also this
],
"scripts": []
},
Также измените весь свой стиль на расширение .less, затем снова запустите свой сервер