Description
Command
- serve
Description
Currently, when using Angular CLI's development server with a proxy configuration, any change to the proxy or interruption (such as backend server restarts) requires stopping and restarting the entire dev server. This is disruptive to the development flow, especially when only the proxy needs to be reloaded or reconnected.
Describe the solution you'd like
Provide a way to restart just the proxy server without stopping the entire Angular dev server. This could be through a dedicated CLI command (e.g., ng serve --restart-proxy
), a watch mode that only restarts the proxy on config change, or a single pressing to restart it manually just like following picture:
This feature would streamline development involving backend APIs and reduce context-switching for developers.
Created via github copilot agent.