diff --git a/src/sdk/paths/vite.ts b/src/sdk/paths/vite.ts new file mode 100644 index 00000000..c3ce3188 --- /dev/null +++ b/src/sdk/paths/vite.ts @@ -0,0 +1,12 @@ +import downloadSandboxPath from "../../../assets/download-sandbox.html?url"; +import olmWasmPath from "../../../lib/olm/olm.wasm?url"; +import olmJsPath from "../../../lib/olm/olm.js?url"; +import olmLegacyJsPath from "../../../lib/olm/olm_legacy.js?url"; + +export const olmPaths = { + wasm: olmWasmPath, + legacyBundle: olmLegacyJsPath, + wasmBundle: olmJsPath, +}; + +export const downloadSandbox = downloadSandboxPath;