Configure webtau for web mode. Must be called before the first invoke() in a web build. In Tauri mode this is a no-op.
invoke()
import { configure } from "webtau";configure({ loadWasm: () => import("./wasm"),}); Copy
import { configure } from "webtau";configure({ loadWasm: () => import("./wasm"),});
Configure webtau for web mode. Must be called before the first
invoke()in a web build. In Tauri mode this is a no-op.