Merge pull request #199 from elliotxiang/main

proxy fail fix
This commit is contained in:
Soybean 2023-03-07 16:04:02 +08:00 committed by GitHub
commit 44b544745d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -19,7 +19,7 @@ interface ServiceEnvConfigWithProxyPattern extends ServiceEnvConfig {
* -
* -
*/
proxyPattern: 'proxy-pattern';
proxyPattern: '/proxy-pattern';
}
interface ImportMetaEnv {