We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd939ff commit 339062cCopy full SHA for 339062c
packages/node/src/transports/new.ts
@@ -38,6 +38,7 @@ export function makeNodeTransport(options: NodeTransportOptions): NewTransport {
38
const urlSegments = new URL(options.url);
39
const isHttps = urlSegments.protocol === 'https:';
40
41
+ // Proxy prioritization: http => `options.proxy` | `process.env.http_proxy`
42
// Proxy prioritization: https => `options.proxy` | `process.env.https_proxy` | `process.env.http_proxy`
43
const proxy = applyNoProxyOption(
44
urlSegments,
0 commit comments