Is there a way to disable the minification in AngularCli?
After I launch the command ng build --prod I need to have all files.js, in dist folder, separate and legible.
ng build --prod
Just do:
ng build --prod --optimization=false
That seems to do it. For more information see: https://github.com/angular/angular-cli/wiki/build
This is valid for angular 6.*
2.1m questions
2.1m answers
60 comments
57.0k users