From f3249883eff44f4a9994916d638137e9877f9707 Mon Sep 17 00:00:00 2001 From: jfhovinne Date: Tue, 10 Sep 2024 16:22:14 +0200 Subject: [PATCH] Disable axios proxy detection (#303) --- src/api.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/api.ts b/src/api.ts index 5a2d4c4d..ebdb8563 100644 --- a/src/api.ts +++ b/src/api.ts @@ -76,6 +76,7 @@ export async function makeCoderSdk(baseUrl: string, token: string | undefined, s const agent = await getHttpAgent() config.httpsAgent = agent config.httpAgent = agent + config.proxy = false return config })