4
I would like to know the differences between the build
of production and the build
development in Angular
?
4
I would like to know the differences between the build
of production and the build
development in Angular
?
10
ng build
or
ng build --dev
Uses the Environment.ts file configuration
ng build --prod
Uses Environment.prod.ts file configuration
Uglification - Put short names for variables
Minificado - White space removal process, comments and any unnecessary code for the machine to interpret
Tree Shaking - Process to remove any code that has no usefulness to the application
Browser other questions tagged javascript angular typescript
You are not signed in. Login or sign up in order to post.