Debug Production Angular applications
If you have ever developed an Angular app, you would know that debugging production Angular applications is not possible. You can’t read the code because of uglify. Even prettify don’t help much. The reason is that in production builds, ng command removes all the source map files(The ones which are ending with .map). Luckily, there …