config.js 410 B

1234567891011121314151617
  1. "use strict";
  2. const getLocalIP = () => {
  3. return "http://172.20.10.3:8001/api";
  4. };
  5. const DEV_API_URL = getLocalIP();
  6. const BASE_URL = /* @__PURE__ */ (() => {
  7. return DEV_API_URL;
  8. })();
  9. const config = {
  10. BASE_URL,
  11. // 超时时间(毫秒)
  12. TIMEOUT: 1e4,
  13. // 是否显示加载提示
  14. SHOW_LOADING: true
  15. };
  16. exports.config = config;
  17. //# sourceMappingURL=../../.sourcemap/mp-weixin/utils/config.js.map