mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
/** 不同请求服务的环境配置 */
|
|
export const serviceConfig: Record<ServiceEnvType, Record<string, string>> = {
|
|
dev: {
|
|
url: 'https://mock.apifox.com/m1/4071143-0-default',
|
|
},
|
|
test: {
|
|
url: 'https://mock.apifox.com/m1/4071143-0-default',
|
|
},
|
|
prod: {
|
|
url: 'https://mock.apifox.com/m1/4071143-0-default',
|
|
},
|
|
}
|