stack/docs-mintlify/hexclave.js
2026-06-19 17:12:46 -07:00

18 lines
425 B
JavaScript

(async function () {
if (typeof window === "undefined") return;
const { HexclaveClientApp } = await import("https://esm.sh/@hexclave/[email protected]");
new HexclaveClientApp({
projectId: "internal",
publishableClientKey: "pck_3e7rwjp3mfgztqv312zs52xkn4tm9bzrnxf7w9wfcn850",
tokenStore: "cookie",
analytics: {
replays: {
enabled: true,
maskAllInputs: false,
},
},
});
})();