Files
goldenChart/desktop/src/installTauriHttp.ts
T
2026-06-14 10:25:22 +09:00

8 lines
259 B
TypeScript

import { fetch as tauriFetch } from '@tauri-apps/plugin-http';
import { setHttpFetch } from '@goldenchart/shared';
/** WebView fetch(ATS/CORS) 대신 Rust reqwest — exdev HTTP API */
export function installTauriHttp(): void {
setHttpFetch(tauriFetch);
}