I'm asking for some help, we have prox.conf.json which contains our different envs, and in many cases, you need to change the target server and need to restart our angular projectAny tricks on how to prevent restarting and when we change the proxy file, angular-project will restart automatically?
const PROXY_CONFIG = {
'/api': {
target: target.SCRUMBLE, // adapt to a local minikube or a remote demo env
secure: false,
pathRewrite: {
'^/api': '',
},
logLevel: "debug"
},