Jelajahi Sumber

chore: 切换 Vite H5 代理到本地后端 192.168.1.147:18086

便于对接内网测试服务器,禁用线上 aiot.zoomwin.com.cn:51001 转发。
xieyong 6 hari lalu
induk
melakukan
c2ee8675f7
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  1. 2 2
      vite.config.js

+ 2 - 2
vite.config.js

@@ -3,8 +3,8 @@ import uni from "@dcloudio/vite-plugin-uni";
 
 // H5 dev: 通过 Vite 代理把 /api 转发到后端,避开浏览器 CORS。
 // 接入新后端时,把 API_TARGET 改成对应环境即可。
-const API_TARGET = 'http://aiot.zoomwin.com.cn:51001/api'
-// const API_TARGET = "http://192.168.1.147:18086";
+// const API_TARGET = 'http://aiot.zoomwin.com.cn:51001/api'
+const API_TARGET = "http://192.168.1.147:18086";
 // const API_TARGET = "http://192.168.1.102:18086";
 
 export default defineConfig({