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 46766be commit 00d7c13Copy full SHA for 00d7c13
packages/core/src/shared/utilities/proxyUtil.ts
@@ -70,6 +70,12 @@ export class ProxyUtil {
70
* Sets environment variables based on proxy configuration
71
*/
72
private static async setProxyEnvironmentVariables(config: ProxyConfig): Promise<void> {
73
+ // Always enable experimental proxy support for better handling of both explicit and transparent proxies
74
+ process.env.EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'true'
75
+
76
+ // Load built-in bundle and system OS trust store
77
+ process.env.NODE_OPTIONS = '--use-system-ca'
78
79
const proxyUrl = config.proxyUrl
80
// Set proxy environment variables
81
if (proxyUrl) {
0 commit comments