first commit

This commit is contained in:
Noor E Ilahi
2026-01-09 12:54:53 +05:30
commit 7ccf44f7da
1070 changed files with 113036 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import * as Sentry from '@sentry/browser';
import * as Integrations from '@sentry/integrations';
import Vue from 'vue';
if (
process.env.NODE_ENV !== 'development' &&
'VUE_APP_SENTRY_DSN' in process.env &&
process.env.VUE_APP_SENTRY_DSN !== 'undefined'
) {
Sentry.init({
release: process.env.VUE_APP_VERSION,
environment: process.env.NODE_ENV,
dsn: process.env.VUE_APP_SENTRY_DSN,
integrations: [
new Integrations.Vue({
Vue,
attachProps: true,
}),
],
});
}