-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
2 changed files
with
14 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters