소스 검색

using tauri http api run plugin to fixed cors in App

lloydzhou 1 년 전
부모
커밋
09aec7b22e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/store/plugin.ts

+ 1 - 1
app/store/plugin.ts

@@ -62,7 +62,7 @@ export const FunctionToolService = {
     const api = new OpenAPIClientAxios({
       definition: yaml.load(plugin.content) as any,
       axiosConfigDefaults: {
-        adapter: adapter as any,
+        adapter: (window.__TAURI__ ? adapter : ["xhr"]) as any,
         baseURL,
         headers,
       },