set default proxy value as false for send_request axios request config

This commit is contained in:
lohit
2025-06-25 12:07:41 +05:30
parent 92a0f093db
commit 59c1b6b675

View File

@@ -27,6 +27,7 @@ type ModifiedAxiosResponse = AxiosResponse & {
}
const baseRequestConfig: Partial<AxiosRequestConfig> = {
proxy: false,
httpAgent: new http.Agent({ keepAlive: true }),
httpsAgent: new https.Agent({ keepAlive: true }),
transformRequest: function transformRequest(data: any, headers: AxiosRequestHeaders) {