automated_uniapp/config/dev.ts

18 lines
235 B
TypeScript
Raw Normal View History

2025-01-09 16:16:11 +08:00
import { proxy } from "./proxy";
export default {
// 根地址
host: proxy["/dev/"].target,
// 请求地址
get baseUrl() {
// #ifdef H5
return "/dev";
// #endif
// #ifndef H5
return this.host + "";
// #endif
},
};