6 lines
153 B
TypeScript
6 lines
153 B
TypeScript
export function trackEvent(action: string, eventParams?: any) {
|
|
if (import.meta.env.VITE_GA_ID) {
|
|
window.gtag('event', action, eventParams);
|
|
}
|
|
}
|