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 168420d commit 759c086Copy full SHA for 759c086
src/main.js
@@ -34,18 +34,21 @@ if (process.env.NODE_ENV === 'production') {
34
screenview: true
35
}
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
+Sentry.init({
+ dsn: process.env.NODE_ENV === 'production'
+ ? 'https://8c09726e231d4cf780c541f40d3639a9@sentry.io/3009295' // cc-chooser-prod project
+ : 'https://ab63acb8c1464466869182dd53c7046d@sentry.io/3009597', // cc-chooser-dev project
+ integrations: [
+ new Integrations.Vue({
+ Vue,
+ attachProps: true,
+ logErrors: true
+ })
49
+ ]
50
+})
51
+
52
new Vue({
53
store,
54
i18n,
0 commit comments