Hello,
I was able to deploy, both aspnet-core and angular. I ran into a couple of issue which forced me to modify the appconfig.json in the angular application. I had to change from localhost to the actual real url that I am using.
My question is, how do you deal with multiple appconfig.json files based on the environment. I have for the aspnet-core three environments, dev, staging and production and it works flawlessly. I can't say the same about the angular piece.
I can't do local development without modifying the appconfig.json (localhost:4200, etc). Then I have to change it back to the original values. Annoying.
I know I can use some sort of "hack" so that I have appconfig.dev.json and then during deployment, overwrite the appconfig.json with the corresponding one under any environment.
Is there a way to achieve this painlessly?
Thanks.