You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is passed through to axios to allow the full range of proxy config and override capability.
By default axios looks at environment variables http_proxy and https_proxy to determine if proxy should be used. If these are not set then it will default off.
To force axios to not use the env variables, use `proxy: false`
To force different proxy values (overriding env variables) provide an object compatible with axios like
```js
proxy: {
host: '127.0.0.1',
port: 9000,
auth: {
username: 'mikeymike',
password: 'rapunz3l'
}
}
```
See https://github.com/axios/axios#config-defaults for full details about what is allowed by axios.
0 commit comments