feat: add Hexclave analytics to Mintlify docs (#1635)

This commit is contained in:
Konsti Wohlwend 2026-06-19 17:12:46 -07:00 committed by GitHub
parent d064b20290
commit 7aec27d978
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

17
docs-mintlify/hexclave.js Normal file
View File

@ -0,0 +1,17 @@
(async function () {
if (typeof window === "undefined") return;
const { HexclaveClientApp } = await import("https://esm.sh/@hexclave/js@1.0.22");
new HexclaveClientApp({
projectId: "internal",
publishableClientKey: "pck_3e7rwjp3mfgztqv312zs52xkn4tm9bzrnxf7w9wfcn850",
tokenStore: "cookie",
analytics: {
replays: {
enabled: true,
maskAllInputs: false,
},
},
});
})();