import { TranslationProvider } from "@gnu-taler/web-util/browser"; import { h, VNode } from "preact"; import { ExchangeAmlFrame } from "./Dashboard.js"; import "./scss/main.css"; import { ExchangeApiProvider } from "./context/config.js"; import { getInitialBackendBaseURL } from "./hooks/useBackend.js"; import { HashPathProvider, Router } from "./route.js"; import { Pages } from "./pages.js"; import { SWRConfig } from "swr"; const WITH_LOCAL_STORAGE_CACHE = false; const pageList = Object.values(Pages); export function App(): VNode { const baseUrl = getInitialBackendBaseURL(); return ( { window.location.href = Pages.cases.url return
not found
; }} />
); } function localStorageProvider(): Map { const map = new Map(JSON.parse(localStorage.getItem("app-cache") || "[]")); window.addEventListener("beforeunload", () => { const appCache = JSON.stringify(Array.from(map.entries())); localStorage.setItem("app-cache", appCache); }); return map; }