request.ts 269 B

1234567
  1. /** 接口请求地址 */
  2. // 需要代理的时候,将这个设置为 api/
  3. export const BASE_URL = import.meta.env.VITE_APP_API_BASE_URL;
  4. /** 接口是否加密 */
  5. export const IS_ENCRYPT = false;
  6. /** 接口超时时间 默认1分钟 */
  7. export const TIMEOUT = 60000;