Proxy
- VS Code proxy setting: https://code.visualstudio.com/docs/setup/network#_proxy-server-support
CLI Proxy
- You need to set this in
workspace -> .vscode -> settings.jsonfor the CLI to use the proxy.
{
"http.proxy": "http://username:password@host:port"
}- Exclude Proxy Host List: Use this setting to exclude hosts from the proxy. It supports comma-separated values, e.g.
*.abc.com,xyz.com.
Last updated on