How to add Google Analytics GA4 Code in Nuxt Application?

Google Analytics with NuxtJS Mixed Logo

Google Analytics GA4 Code in Nuxt without any Plugins

Method: Add Google Analytics 4 Id to Nuxt:

Choose: Google Bookmark Icon Common site tag (gtag.js) which looks like this:

<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>
<script>
  window.dataLayer = window.dataLayer || [];
  function gtag(){dataLayer.push(arguments);}
  gtag('js', new Date());

  gtag('config', 'G-XXXXXXXXXX');
</script>

Convert the script:

<script async src="https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX"></script>

to the following code and put it in nuxt.config.js at the beginning of the head element:

head: {
    script: [
          // Google Analytics Code
          {
            src: "https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX",
            async: true,
          },
        ]
    }

Then create a new folder named ‘js’ in the /static folder and create a file named analytics.js in it.

In the analytics.js file, write the following code:

window.dataLayer = window.dataLayer || [];
function gtag() {
  dataLayer.push(arguments);
}
gtag("js", new Date());

gtag("config", "G-XXXXXXXXXX");

Now it remains to import the analytics.js file in nuxt.config.js by adding it to the script in head:

head: {
    script: [
          // Google Analytics Code
          {
            src: "https://www.googletagmanager.com/gtag/js?id=G-XXXXXXXXXX",
            async: true,
          },
          // Import analitics.js file
          { src: "/js/analitics.js" },
        ]
    }

Important:

Note that instead of G-XXXXXXXXXX, you need to enter your Google Analytics code!!!

In about 24 hours Google will start collecting data on visits to your site!

And that’s it, we have successfully added Google Analytics to our Nuxt application.

Съгласие за бисквитки / Cookies Consent

Този уебсайт използва бисквитки, за да ви предостави по-персонализирано и подходящо преживяване при разглежднето му.
This website uses cookies to provide you with a more personalised and relevant browsing experience. НАУЧЕТЕ ПОВЕЧЕ / FIND OUT MORE...