Files
continuwuity/packages/website/src/lib/analytics.ts
T

15 lines
308 B
TypeScript
Raw Normal View History

2024-06-16 19:41:02 +01:00
const is_browser = typeof window !== "undefined";
if (is_browser) {
(<any>window).dataLayer = (<any>window).dataLayer || [];
}
2024-06-16 17:51:21 +01:00
export function gtag(...args: any[]) {
2024-06-16 19:41:02 +01:00
if (is_browser) {
(<any>window).dataLayer.push(arguments);
}
2024-06-16 17:51:21 +01:00
}
gtag('js', new Date());
gtag('config', 'G-Q2R5PQL59Z');