Implementing Dynamic Environment Configuration in Angular for Avoiding One Build per Environment
One big flaw of the Angular CLI’s way of handling environments, according to the build once, deploy many DevOps principle, is that out-of-the-box Angular CLI wants you to create one separate build per environment. Why should you only build once and reuse that build in all environments? The reason why you don’t want to create a separate build for …