I'm trying to use $ga in a middleware, but it doesn't seem to contain it.
I tried using context.$ga and context.app.$ga but they are undefined.
I also tried putting '@nuxtjs/google-analytics' in both buildModules and modules in nuxt.config.js but didn't work either.
export default function (context) {
console.log(context.$ga)
console.log(context.app.$ga)
}
both logs are undefined.
I'm trying to use $ga in a middleware, but it doesn't seem to contain it.
I tried using
context.$gaandcontext.app.$gabut they are undefined.I also tried putting
'@nuxtjs/google-analytics'in bothbuildModulesandmodulesinnuxt.config.jsbut didn't work either.both logs are undefined.