How to Add Google Analytics to a Next.js Application

How to Add Google Analytics to a Next.js Application

In this post we will give you information about How to Add Google Analytics to a Next.js Application. Hear we will give you detail about How to Add Google Analytics to a Next.js Application And how to use it also give you demo for it if it is necessary.

Data is today the world’s most valuable commodity. So understanding how your users are using your platform is crucial for taking your business to the next level.

And in the world of analytics, Google is the leader. And the great news is it’s completely free to use!

Google Analytics is a great, free way to track the performance of your web and mobile applications.

This tutorial will be covering how to add Google Analytics to the Next.js application.

1. Create a Google Analytics environment variable

First, let’s create an environment variable for our Google Analytics Measurement ID.

NEXT_PUBLIC_GA_ID=G-XXXXX 

Locally, this should reside in a .env.local or .env file.

Remember to set this environment variable wherever this application is deployed in production.

2. Inject Google Analytics script in _document.js

Next, we’ll want to inject the Google Analytics Global Site Tag (gtag.js) into our site’s <head>.

To access the Next.js <Head> tag, we’ll need a Next.js custom document called /pages/_document.js.

Here, we’ll inject the Google Analytics script into /pages/_document.js.

import Document, { Html, Head, Main, NextScript } from 'next/document';
const gtag = 'https://www.googletagmanager.com/gtag/js?id=${process.env.NEXT_PUBLIC_GA_ID}';
export default class MyDocument extends Document {
  render() {
    return (
      <Html>
        <Head>
          <script async src={gtag} />
          <script 
            dangerouslySetInnerHTML={{
              __html: '
                window.dataLayer = window.dataLayer || [];
                function gtag(){dataLayer.push(arguments);}
                gtag('js', new Date());
                gtag('config', '${process.env.NEXT_PUBLIC_GA_ID}', {
                  page_path: window.location.pathname,
                });
              '
            }}
          />
        </Head>
        <body>
          <Main />
          <NextScript />
        </body>
      </Html>
    )
  }
}

3. Track page views in _app.js

In order to track page views in our application, we’ll want to add a simple useEffect() hook into our _app.js that listens for routeChangeComplete events.

import { useEffect } from 'react';
import { useRouter } from 'next/router';
function MyApp({ Component, pageProps }) {
  const router = useRouter();
  useEffect(() => {
    const handleRouteChange = url => {
      window.gtag('config', process.env.NEXT_PUBLIC_GA_ID, {
        page_path: url,
      });
    }
    router.events.on('routeChangeComplete', handleRouteChange);
    return () => {
      router.events.off('routeChangeComplete', handleRouteChange);
    }
  }, [router.events]);
  return <Component {...pageProps} />
}
export default MyApp

 

4. Optional: only track in production

If we want to limit analytics to our production environment, we can check process.env.NODE_ENV.

Modify _document.js

In /pages/_document.js, let’s declare a boolean variable to check for production (can be outside the component).

const isProd = process.env.NODE_ENV === "production";

Then, we can wrap everything in <Head> in a conditional.

<Head>
  {isProd && (
    <>
      {/* The two script tags */}
    </>
  )}
</Head>

Modify _app.js

In /pages/_app.js, let’s declare the same boolean variable for production.

const isProd = process.env.NODE_ENV === "production";

Then, we can modify handleRouteChange to only fire in production.

const handleRouteChange = url => {
  if (isProd) {
    window.gtag('config', process.env.NEXT_PUBLIC_GA_ID, {
      page_path: url,
    });
  }
};

Thank you for reading this article.

Also see: How to Loop in React JSX

.       .

If you have any queries or doubts about this topic please feel free to contact us. We will try to reach you.

Hope this code and post will helped you for implement How to Add Google Analytics to a Next.js Application. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US