public getV2ProxyConfig()

in runtimes/runtimes/util/standalone/experimentalProxyUtil.ts [35:45]


    public getV2ProxyConfig(): ConfigurationOptions {
        if (!this.cachedV2Config) {
            const agent = this.getSecureAgent()
            this.cachedV2Config = {
                httpOptions: {
                    agent: agent,
                },
            }
        }
        return this.cachedV2Config
    }