1 Star 0 Fork 0

乡关何处/Soybean-thin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.env-config.ts 669 Bytes
一键复制 编辑 原始数据 按行查看 历史
乡关何处 提交于 2023-09-25 10:37 . feat: 移除Form,修复Ts报错
/** 请求服务的环境配置 */
type ServiceEnv = Record<ServiceEnvType, ServiceEnvConfig>;
/** 不同请求服务的环境配置 */
const serviceEnv: ServiceEnv = {
dev: {
url: 'https://pr-miniapp.sagabuy.com/sys'
},
test: {
url: 'http://localhost:8080'
},
prod: {
url: 'https://pr-miniapp.sagabuy.com/sys'
}
};
/**
* 获取当前环境模式下的请求服务的配置
* @param env 环境
*/
export function getServiceEnvConfig(env: ImportMetaEnv): ServiceEnvConfigWithProxyPattern {
const { VITE_SERVICE_ENV = 'dev' } = env;
const config = serviceEnv[VITE_SERVICE_ENV];
return {
...config,
proxyPattern: '/sys'
};
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xghc/soybean-thin.git
git@gitee.com:xghc/soybean-thin.git
xghc
soybean-thin
Soybean-thin
master

搜索帮助