加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
env.config.ts 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
icestone2000 提交于 2024-06-05 14:47 . Add env.config.ts
/**
* Create service config by current env
*
* @param env The current env
*/
export function createServiceConfig(env: Env.ImportMeta) {
const mockURL = 'https://mock.apifox.com/m1/4080832-0-default';
const devURL = 'http://47.92.253.145:9999/api/v1';
const testURL = '';
const prodURL = '';
const serviceConfigMap: App.Service.ServiceConfigMap = {
dev: {
baseURL: devURL,
otherBaseURL: {
demo: devURL,
mock: mockURL
}
},
test: {
baseURL: mockURL,
otherBaseURL: {
demo: testURL,
mock: mockURL
}
},
prod: {
baseURL: prodURL,
otherBaseURL: {
demo: prodURL,
mock: mockURL
}
}
};
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}`;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化