Browse Source

chore: Update connect backup ip

git update-index --assume-unchanged <file>
Mr. Robot 4 months ago
parent
commit
08fe294e6a
3 changed files with 3 additions and 4 deletions
  1. 1 1
      .env.development
  2. 1 1
      .env.production
  3. 1 2
      vite.config.ts

+ 1 - 1
.env.development

@@ -12,4 +12,4 @@
 #ws地址
 #ws地址
 
 
 
 
-VITE_WS_URL=ws://192.168.99.49:8083/api/webSocket/{}
+VITE_WS_URL=ws://localhost:8083/api/webSocket/{}

+ 1 - 1
.env.production

@@ -10,4 +10,4 @@
 # baseURL 地址
 # baseURL 地址
    VITE_DEV_PATH=/api
    VITE_DEV_PATH=/api
    #ws地址
    #ws地址
-VITE_WS_URL=ws://192.168.1.103:8083/api/webSocket/{}
+VITE_WS_URL=ws://localhost:8083/api/webSocket/{}

+ 1 - 2
vite.config.ts

@@ -22,8 +22,7 @@ export default defineConfig({
     proxy: {
     proxy: {
       // 代理配置
       // 代理配置
       '/api': {
       '/api': {
-        // target: 'http://192.168.1.104:8083',  // 目标服务器
-        target: 'http://192.168.99.49:8083',  // 目标服务器
+        target: 'http://localhost:8083',  // 目标服务器
         changeOrigin: true,            // 需要虚拟主机站点
         changeOrigin: true,            // 需要虚拟主机站点
         rewrite: (path) => path.replace(/^\/api/, '/api/')  // 重写 API 请求
         rewrite: (path) => path.replace(/^\/api/, '/api/')  // 重写 API 请求
       }
       }