What does this Angular CLI command do?
ng build --configuration=production --progress=false
It builds the Angular application, setting the build configuration to the "production" target specified in the angular.json file, and disables watching files for changes.
It builds the Angular application, setting the build configuration to the "production" target specified in the angular.json file, and watching files for changes.
It builds the Angular application, setting the build configuration to the "production" target specified in the angular.json file, and logs progress output to the console.
It builds the Angular application, setting the build configuration to the "production" target specified in the angular.json file, and prevents progress output to the console. Angular documentation - ng build
ng build