proxy fail fix

修改代理地址缺少/导致代理失败问题
This commit is contained in:
elliotliu 2023-03-07 15:51:07 +08:00 committed by GitHub
parent 8debfe7e95
commit ebe2c56348
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,6 @@ export function getServiceEnvConfig(env: ImportMetaEnv): ServiceEnvConfigWithPro
return {
...config,
proxyPattern: 'proxy-pattern'
proxyPattern: '/proxy-pattern'
};
}