xxxxxxxxxx
{
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"cache": {
"enabled": false
}
},
"projects": {}
}
To disable the cache in Angular
xxxxxxxxxx
// cache information use this command in angular root project
ng cache info
// disable cache use this command in angular root project
ng cache off
// enable cache use this command in angular root project
ng cache on