How to integrate Google Analytics with a Next.js app

TL;DR: Chuck tag and script into Script tag in _app.tsx file. Also, note to not include the script tag inside the head or _document.tsx file.

Setting up analytics in a single-page application can be a PITA, specially if there is bunch of stuff going o…

TL;DR: Chuck tag and script into Script tag in _app.tsx file. Also, note to not include the script tag inside the head or _document.tsx file.

Setting up analytics in a single-page application can be a PITA, specially if there is bunch of stuff going on under the hood when you use an opinionated framework like Next.js, eg. SSR, ISR etc. In this post we’ll be looking specifically into Next.js 11 and up, which has made lives much easier, and setting up GA4 with it’s Global site tag aka gtag.js.

First thing first, if you don’t already have a Google Analytics 4 property setup, check out the official walkthrough, and set up default streams, at least the Page views stream.

It might look something like this:
GA4 metrics settings

GA4 metrics setup instructions

Moving forward, we simply need to include the snippet provided by the GA into our Next app.

Before we do that, we’ll pass in the GA ID through .env file (which we’ll pass in via Vercel’s environment variable setting, if you’re using Vercel for deployment).
In the root folder, in your .env.local file:

// .env.local
NEXT_PUBLIC_GA_ID=G-12XXXXXXXX

In your _app.tsx, paste the snippet.

// _app.tsx
...
import Script from 'next/script'
...

export default function MyApp({ Component, pageProps }: AppProps) {
  return (
    <>
      <Script
        strategy='lazyOnload'
        src={`https://www.googletagmanager.com/gtag/js?id=${process.env.NEXT_PUBLIC_GA_ID}`}
      />
      <Script id='ga-analytics'>
        {
          `
            window.dataLayer = window.dataLayer || [];
            function gtag(){dataLayer.push(arguments);}
            gtag('js', new Date());

            gtag('config', '${process.env.NEXT_PUBLIC_GA_ID}');
          `
        }
      </Script>
      <Component {...pageProps} />
    </>
  )
}

Few important things to note here:

  1. id for enclosing inline scripts, so that Next.js knows what’s where. Failing to do so, might result in undesirable results. I have noticed double reporting of page_view events.
  2. We’re setting strategy='lazyOnload' . It’s recommended to use afterInteractive for analytics in the official docs, which is also the default. But that might cause slight hindrance on page load speed, so we’re opting to load analytics scripts after everything else in the page have finished loading. I haven’t noticed any drawbacks with this option.



How do we verify everything is working?

Basic intuition is to login to your analytics dashboard, and monitor the Realtime tab under Report.

You can also make use of this handy chrome extension, and make sure a single page-view event is triggered on page load and page navigation (browser history state change).

Expected log from Google Analytics extension in the console

That’s it, happy tracking. Use it responsibly. ?

Original post


Print Share Comment Cite Upload Translate
APA
bishal | Sciencx (2024-03-28T21:56:27+00:00) » How to integrate Google Analytics with a Next.js app. Retrieved from https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/.
MLA
" » How to integrate Google Analytics with a Next.js app." bishal | Sciencx - Tuesday September 28, 2021, https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/
HARVARD
bishal | Sciencx Tuesday September 28, 2021 » How to integrate Google Analytics with a Next.js app., viewed 2024-03-28T21:56:27+00:00,<https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/>
VANCOUVER
bishal | Sciencx - » How to integrate Google Analytics with a Next.js app. [Internet]. [Accessed 2024-03-28T21:56:27+00:00]. Available from: https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/
CHICAGO
" » How to integrate Google Analytics with a Next.js app." bishal | Sciencx - Accessed 2024-03-28T21:56:27+00:00. https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/
IEEE
" » How to integrate Google Analytics with a Next.js app." bishal | Sciencx [Online]. Available: https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/. [Accessed: 2024-03-28T21:56:27+00:00]
rf:citation
» How to integrate Google Analytics with a Next.js app | bishal | Sciencx | https://www.scien.cx/2021/09/28/how-to-integrate-google-analytics-with-a-next-js-app/ | 2024-03-28T21:56:27+00:00
https://github.com/addpipe/simple-recorderjs-demo