mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-30 21:01:54 +08:00
18 lines
425 B
JavaScript
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,
|
|
},
|
|
},
|
|
});
|
|
})();
|