I have a application built with aurelia and bundled with webpacks. I have a variables in a typescript file. When i do a producation build, I just want to change those variables when I deploy at various servers. Example apiRoot= http://10.10.0.1/RESTSERVICES/---> when deployed at one server when deployed at another server I what apiRoot do be different. But I don't want to build the code multiple times to deploy at various locations.
For this reason I'm looking a run time config file for aurelia application built with webpacks. Thanks in Advance