mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-11-05 06:23:14 +00:00
17 lines
373 B
JavaScript
17 lines
373 B
JavaScript
import Vue from 'vue'
|
|
import VueAnalytics from 'vue-analytics'
|
|
import router from "../router";
|
|
|
|
if(process.env.VUE_APP_GANALYTICS){
|
|
Vue.use(VueAnalytics, {
|
|
id: process.env.VUE_APP_GANALYTICS,
|
|
router,
|
|
set:[
|
|
{
|
|
field: 'dimension1',
|
|
value: process.env.APPLICATION_VERSION
|
|
}
|
|
]
|
|
})
|
|
}
|