Getting started with angular.
Background:
The docs go through setting up proxy.conf.json and using that to route calls. As far as I have read, the command line
ng serve --proxyConfig=proxyConfig
starts the web pack server, passes the proxy configuration to webpack.
My question:
Suppose we finish development, and need to deploy the web control to, e.g. Apache Tomcat. I've found instructions on deploying the control there and can see the control come up in the browser, but how do we transfer the configuration from proxy.conf.json to a deployment server, e.g. tomcat?
I'm assuming that there is no provision in angular to translate to a different server?
Thanks!