include the google analytics script in next js render method code example
Example 1: google analytics nextjs
npm i -D @types/gtag.js
Example 2: google analytics nextjs
export const GA_TRACKING_ID = "<INSERT_TAG_ID>";
export const pageview = (url: URL): void => {
window.gtag("config", GA_TRACKING_ID, {
page_path: url,
});
};
type GTagEvent = {
action: string;
category: string;
label: string;
value: number;
};
export const event = ({ action, category, label, value }: GTagEvent): void => {
window.gtag("event", action, {
event_category: category,
event_label: label,
value,
});
};