I have an angular app, with environment configs which helps it to connect to different API endpoints based on the configuration.
ng build --prod --environment={{ENV}}
is how is build the app.
I copy the artifacts to the folder where tomcat hosts from. However, the local env is always picked out.
ng serve --env={{ENV}}
would work, but how do i do the same using Tomcat?
Thanks, Pratik