소스 검색

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

Signed-off-by: shanghaikid <jiangruiyi@gmail.com>
ryjiang 7 달 전
부모
커밋
717c21f959
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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 =