remove oreo id from service

yhy
Dawn_Ocean 2024-03-07 23:54:59 +08:00
parent 133d60375a
commit c756e74778
3 changed files with 2 additions and 23 deletions

View File

@ -1,4 +1,3 @@
# 配置文档参考 https://taro-docs.jd.com/docs/next/env-mode-config
TARO_APP_ID="wx636eb7cf2b84f305"
TARO_APP_API="http://127.0.0.1:9527"
TARO_APP_API_OREO="http://127.0.0.1:9527"
TARO_APP_API="http://127.0.0.1:9527"

View File

@ -1,3 +1,2 @@
TARO_APP_ID="wx636eb7cf2b84f305"
TARO_APP_API=""
TARO_APP_API_OREO=""
TARO_APP_API=""

View File

@ -39,22 +39,3 @@ export function getUrl(path: string): string {
return '';
}
}
/**
* Get URL of Oreo backend
* @param path Relative path to base url, begins with `/`
* @returns Full url
*
* @example
* // see example of `getUrl`
*/
export function getUrlOreo(path: string): string {
const baseUrlOreo = process.env.TARO_APP_API_OREO;
// console.log('buo:', baseUrlOreo);
if (baseUrlOreo) {
return baseUrlOreo + path;
} else {
console.log('env TARO_APP_API_OREO is undefined');
return '';
}
}