From ebe2c56348e85d14acdd381f965e8943346356b1 Mon Sep 17 00:00:00 2001 From: elliotliu Date: Tue, 7 Mar 2023 15:51:07 +0800 Subject: [PATCH] proxy fail fix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 修改代理地址缺少/导致代理失败问题 --- .env-config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env-config.ts b/.env-config.ts index be7f8bf4..1485bc4b 100644 --- a/.env-config.ts +++ b/.env-config.ts @@ -25,6 +25,6 @@ export function getServiceEnvConfig(env: ImportMetaEnv): ServiceEnvConfigWithPro return { ...config, - proxyPattern: 'proxy-pattern' + proxyPattern: '/proxy-pattern' }; }