554 B
554 B
How to add web analytics?
- Install the following packages
npm install @flowershow/core
- Add the following to
/pages/_app.tsx
import { pageview } from "@flowershow/core";
- Add this to the
MyAppfunction inside of_app.tsx
useEffect(() => {
const handleRouteChange = (url) => {
pageview(url, {YOUR GA_ID});
};
router.events.on("routeChangeComplete", handleRouteChange);
return () => {
router.events.off("routeChangeComplete", handleRouteChange);
};
}, [router.events]);