1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-09 17:37:40 +01:00
smov/src/setup/ga.ts

11 lines
160 B
TypeScript

import ReactGA from "react-ga4";
import { GA_ID } from "@/setup/constants";
if (GA_ID) {
ReactGA.initialize([
{
trackingId: GA_ID,
},
]);
}