Skip to content

Commit

Permalink
chore: comment out hotjar
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-moore committed Jan 1, 2024
1 parent 1a6792d commit 6065b8a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions layer/plugins/tracking.ts
Original file line number Diff line number Diff line change
@@ -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) {
Expand All @@ -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
// })
// }
})

0 comments on commit 6065b8a

Please sign in to comment.