enable vercel analytics

This commit is contained in:
Pan Cake
2024-02-04 14:25:46 +10:00
parent 1bc93bb99c
commit 4689db768e
3 changed files with 17 additions and 0 deletions
+14
View File
@@ -8,6 +8,7 @@
"name": "stremio-addon-manager", "name": "stremio-addon-manager",
"version": "0.0.0", "version": "0.0.0",
"dependencies": { "dependencies": {
"@vercel/analytics": "^1.1.2",
"chota": "^0.9.2", "chota": "^0.9.2",
"vue": "^3.4.15", "vue": "^3.4.15",
"vuedraggable": "^4.1.0" "vuedraggable": "^4.1.0"
@@ -576,6 +577,14 @@
"integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==",
"dev": true "dev": true
}, },
"node_modules/@vercel/analytics": {
"version": "1.1.2",
"resolved": "https://registry.npmjs.org/@vercel/analytics/-/analytics-1.1.2.tgz",
"integrity": "sha512-CodhkLCQ/EHzjX8k+Qg+OzTBY0UadykrcfolfSOJVZZY/ZJM5nbhztm9KdbYvMfqKlasAr1+OYy0ThZnDA/MYA==",
"dependencies": {
"server-only": "^0.0.1"
}
},
"node_modules/@vitejs/plugin-vue": { "node_modules/@vitejs/plugin-vue": {
"version": "5.0.3", "version": "5.0.3",
"resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.3.tgz", "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-5.0.3.tgz",
@@ -849,6 +858,11 @@
"fsevents": "~2.3.2" "fsevents": "~2.3.2"
} }
}, },
"node_modules/server-only": {
"version": "0.0.1",
"resolved": "https://registry.npmjs.org/server-only/-/server-only-0.0.1.tgz",
"integrity": "sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA=="
},
"node_modules/sortablejs": { "node_modules/sortablejs": {
"version": "1.14.0", "version": "1.14.0",
"resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz", "resolved": "https://registry.npmjs.org/sortablejs/-/sortablejs-1.14.0.tgz",
+1
View File
@@ -9,6 +9,7 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@vercel/analytics": "^1.1.2",
"chota": "^0.9.2", "chota": "^0.9.2",
"vue": "^3.4.15", "vue": "^3.4.15",
"vuedraggable": "^4.1.0" "vuedraggable": "^4.1.0"
+2
View File
@@ -1,6 +1,8 @@
import './assets/main.css' import './assets/main.css'
import { createApp } from 'vue' import { createApp } from 'vue'
import { inject } from '@vercel/analytics';
import App from './App.vue' import App from './App.vue'
inject();
createApp(App).mount('#app') createApp(App).mount('#app')