Browse Source

fix: fix app to able to connect (#777)

Signed-off-by: shanghaikid <jiangruiyi@gmail.com>
ryjiang 4 months ago
parent
commit
717c21f959
1 changed files with 1 additions and 1 deletions
  1. 1 1
      client/src/http/Axios.ts

+ 1 - 1
client/src/http/Axios.ts

@@ -5,7 +5,7 @@ import { MILVUS_CLIENT_ID } from '@/consts';
 const hostUrl: { [key: string]: string | undefined } = {
   development: ``,
   production: ((window as any)._env_ && (window as any)._env_.HOST_URL) || '',
-  electron: `http://127.0.0.1:3000`,
+  electron: `http://127.0.0.1:3080`,
 };
 
 export const isElectron =