datahub/site/content/howto/analytics.md
Luccas Mateus de Medeiros Gomes f93d4aa6bd [site][m] - start of developer faq
2023-05-17 19:41:27 -03:00

23 lines
554 B
Markdown

# 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 `MyApp` function 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]);
```