소스 검색

feat: 在H5代理请求环境下,拼接代理前缀

ideal 1 년 전
부모
커밋
3737e6496b
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      src/interceptors/request.ts

+ 2 - 1
src/interceptors/request.ts

@@ -31,7 +31,8 @@ const httpInterceptor = {
       // #ifdef H5
       // console.log(__VITE_APP_PROXY__)
       if (JSON.parse(__VITE_APP_PROXY__)) {
-        // 啥都不需要做
+        // 自动拼接代理前缀
+        options.url = import.meta.env.VITE_APP_PROXY_PREFIX + options.url
       } else {
         options.url = baseUrl + options.url
       }