Skip to content

Instantly share code, notes, and snippets.

@devmnj
Created July 7, 2021 11:48
Show Gist options
  • Save devmnj/a16b722f813a4098c17c5e640637699b to your computer and use it in GitHub Desktop.
Save devmnj/a16b722f813a4098c17c5e640637699b to your computer and use it in GitHub Desktop.
Vue GA plugin using vue-gtag in nuxt for monitoring site traffic
import Vue from "vue";
import VueGtag from "vue-gtag";
Vue.use(VueGtag, {
config: { id: process.env.GID}, //measurement ID G-LL1HBDMH8D,
params: {
send_page_view: false
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment