Settings

Settings

Website configuration and tracking setup

Website
Thaimat (DEV)
thaimat-butikk-nettside.vercel.app
73fc3800-2632-46b3-8fbb-0950712b6443
pk_b4dcdf5838ab91c9dfe99e15f5c71be91e0e7783626d1841
Installation
pnpm add git+ssh://[email protected]:DRCheese1/pulse-sdk.git
SDK Setup — Vanilla JS / Node
import { initPulse } from "@pulse/sdk";

initPulse({
  endpoint: "https://pulse.quant-studios.com",
  apiKey: "pk_b4dcdf5838ab91c9dfe99e15f5c71be91e0e7783626d1841",
  websiteId: "73fc3800-2632-46b3-8fbb-0950712b6443",
});
SDK Setup — React / Next.js
import { PulseAnalytics } from "@pulse/sdk/react";

// In your root layout or _app:
<PulseAnalytics
  endpoint="https://pulse.quant-studios.com"
  apiKey="pk_b4dcdf5838ab91c9dfe99e15f5c71be91e0e7783626d1841"
  websiteId="73fc3800-2632-46b3-8fbb-0950712b6443"
/>