| 1234567891011121314151617 |
- "use strict";
- const getLocalIP = () => {
- return "http://172.20.10.3:8001/api";
- };
- const DEV_API_URL = getLocalIP();
- const BASE_URL = /* @__PURE__ */ (() => {
- return DEV_API_URL;
- })();
- const config = {
- BASE_URL,
- // 超时时间(毫秒)
- TIMEOUT: 1e4,
- // 是否显示加载提示
- SHOW_LOADING: true
- };
- exports.config = config;
- //# sourceMappingURL=../../.sourcemap/mp-weixin/utils/config.js.map
|