We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 48f81ee commit 168420dCopy full SHA for 168420d
src/main.js
@@ -6,6 +6,9 @@ import VueAnalytics from 'vue-analytics'
6
import App from './App.vue'
7
import store from './store'
8
9
+import * as Sentry from '@sentry/browser'
10
+import * as Integrations from '@sentry/integrations'
11
+
12
import { library } from '@fortawesome/fontawesome-svg-core'
13
import { faCopy } from '@fortawesome/free-solid-svg-icons/faCopy'
14
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome'
@@ -31,6 +34,16 @@ if (process.env.NODE_ENV === 'production') {
31
34
screenview: true
32
35
}
33
36
})
37
+ Sentry.init({
38
+ dsn: '',
39
+ integrations: [
40
+ new Integrations.Vue({
41
+ Vue,
42
+ attachProps: true,
43
+ logErrors: true
44
+ })
45
+ ]
46
47
48
49
new Vue({
0 commit comments