mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-11-05 06:23:14 +00:00
11 lines
228 B
JavaScript
11 lines
228 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
|
|
})
|
|
}
|