Files
ep-133-project-export/src/lib/ga.ts

6 lines
153 B
TypeScript

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