### Command build, config ### Description In `angular.json` the builder `@angular-devkit/build-angular:browser` does not seem to currently support `"autoCsp": true` when passed as follows: ```JSON { "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "newProjectRoot": "projects", "projects": { <project>: { ... "architect": { "build": { "builder": "@angular-devkit/build-angular:browser", "options": { ... "security": { "autoCsp": true } } } } } } } ``` It impacts the builder `@angular-devkit/build-angular:browser`, which means is not possible to both have autoCSP and to extend webpack. ### Describe the solution you'd like _No response_ ### Describe alternatives you've considered _No response_