mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-09-18 03:39:58 +08:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
/** 不同请求服务的环境配置 */
|
|
export const serviceConfig: Record<ServiceEnvType, Record<string, string>> = {
|
|
dev: {
|
|
url: 'http://localhost:3000',
|
|
},
|
|
production: {
|
|
url: 'https://mock.apifox.cn/m1/4071143-0-default',
|
|
},
|
|
}
|