how to make build of angular project code example
Example 1: ng build prod
ng build --prod
Example 2: angular build production
ng build --configuration=<env> --output-hashing=all
Example 3: create new project angular
ng new
//After this you will be given the choice to name the project, add routing, add scss/sass/css
ng new angular_project
cd angular-project
ng serve