mirror of
https://gitlab.com/MisterBiggs/brain-quartz.git
synced 2025-06-16 09:46:39 +00:00
fix(analytics): streamline posthog script loading and event capturing (#1974)
This commit is contained in:
parent
c9741d00f3
commit
6d49d97559
@ -159,14 +159,10 @@ function addGlobalPageResources(ctx: BuildCtx, componentResources: ComponentReso
|
|||||||
posthog.init('${cfg.analytics.apiKey}', {
|
posthog.init('${cfg.analytics.apiKey}', {
|
||||||
api_host: '${cfg.analytics.host ?? "https://app.posthog.com"}',
|
api_host: '${cfg.analytics.host ?? "https://app.posthog.com"}',
|
||||||
capture_pageview: false,
|
capture_pageview: false,
|
||||||
})\`
|
});
|
||||||
posthogScript.onload = () => {
|
document.addEventListener('nav', () => {
|
||||||
posthog.capture('$pageview', { path: location.pathname });
|
posthog.capture('$pageview', { path: location.pathname });
|
||||||
|
})\`
|
||||||
document.addEventListener('nav', () => {
|
|
||||||
posthog.capture('$pageview', { path: location.pathname });
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
document.head.appendChild(posthogScript);
|
document.head.appendChild(posthogScript);
|
||||||
`)
|
`)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user