From 6065b8af3f483bd24072a104103e125e2e9e193b Mon Sep 17 00:00:00 2001 From: shane-moore Date: Mon, 1 Jan 2024 15:13:42 -0800 Subject: [PATCH] chore: comment out hotjar --- layer/plugins/tracking.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/layer/plugins/tracking.ts b/layer/plugins/tracking.ts index 6ce99356..a0695111 100644 --- a/layer/plugins/tracking.ts +++ b/layer/plugins/tracking.ts @@ -1,7 +1,7 @@ import VueGtag from 'vue-gtag' -import hotjar from 'vue-hotjar' +// import hotjar from 'vue-hotjar' import { defineNuxtPlugin } from '#imports' -import { HOTJAR_KEY, GOOGLE_ANALYTICS_KEY } from './../utils/constant' +import { GOOGLE_ANALYTICS_KEY } from './../utils/constant' export default defineNuxtPlugin((nuxtApp) => { if (GOOGLE_ANALYTICS_KEY) { @@ -12,9 +12,9 @@ export default defineNuxtPlugin((nuxtApp) => { }) } - if (HOTJAR_KEY) { - nuxtApp.vueApp.use(hotjar as any, { - id: HOTJAR_KEY - }) - } + // if (HOTJAR_KEY) { + // nuxtApp.vueApp.use(hotjar as any, { + // id: HOTJAR_KEY + // }) + // } })