1 Star 4 Fork 5

flowlong-plus/flowlong-web

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
env.config.ts 968 Bytes
一键复制 编辑 原始数据 按行查看 历史
jiaxiaoyu 提交于 2024-06-14 09:56 . feat: 初始提交
/**
* Create service config by current env
*
* @param env The current env
*/
export function createServiceConfig(env: Env.ImportMeta) {
const mockURL = 'https://mock.apifox.com/';
const serviceConfigMap: App.Service.ServiceConfigMap = {
dev: {
baseURL: 'http://127.0.0.1:9091',
otherBaseURL: {
demo: 'http://localhost:9528'
}
},
test: {
baseURL: mockURL,
otherBaseURL: {
demo: 'http://localhost:9529'
}
},
prod: {
baseURL: 'http://flowlong.yuencode.cn/gateway',
otherBaseURL: {
demo: 'http://localhost:9530'
}
}
};
const { VITE_SERVICE_ENV = 'dev' } = env;
return serviceConfigMap[VITE_SERVICE_ENV];
}
/**
* Get proxy pattern of service url
*
* @param key If not set, will use the default key
*/
export function createProxyPattern(key?: App.Service.OtherBaseURLKey) {
if (!key) {
return '/proxy-default';
}
return `/proxy-${key}`;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/flowlong-plus/flowlong-web.git
[email protected]:flowlong-plus/flowlong-web.git
flowlong-plus
flowlong-web
flowlong-web
master

搜索帮助