I would like to be able to change the url on which my angular will fetch ressources from the server at build time. I would to pass a parameter during the build to change the url value The reason behind is for deployment in different docker containers.
environment.docker.ts
export const environment = {
...
url: "localhost:8080"
};
I would like to have something like : ng build --env docker --url:"localhost:9090"
which will update the default value during build time.