Angular

Debug Production Angular applications

If you have experience in developing Angular applications, you may know that debugging production-ready Angular applications is challenging because of the Uglify tool that obfuscates the code. Even when you prettify the code, it is still difficult to read because ng command removes all the source map files (.map files) in production builds. Fortunately, there …

Debug Production Angular applications Read More »

How to solve JavaScript heap out of memory in angular or ionic build –prod

Lately, I was facing JavaScript heap out of memory issue whenever I tried to make Ionic 3 production build. After some googling, I found out that I am not the only one facing this issue. See this thread. Cause of JavaScript heap out of memory error Ionic 3 is based on angular, and it uses …

How to solve JavaScript heap out of memory in angular or ionic build –prod Read More »