mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-16 18:43:42 +08:00
With this change, the architect can be configured to use a default configuration when it's not provided as part of the target. Consider the below, where `defaultConfiguration` is configured to `production`. Running `ng build` will be invoked with "production" configuration. ```js "build": { "builder": "@angular-devkit/build-angular:browser", "defaultConfiguration": "production", "options": { ... }, "configurations": { "production": { ... } } } ```
Angular Build Facade
WIP