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 300a145 commit 4840408Copy full SHA for 4840408
packages/vue/src/sdk.ts
@@ -1,6 +1,6 @@
1
import { SDK_VERSION, defaultIntegrations, init as browserInit } from '@sentry/browser';
2
3
-import { VueIntegration } from './integration';
+import { vueIntegration } from './integration';
4
import type { Options, TracingOptions } from './types';
5
6
/**
@@ -22,7 +22,7 @@ export function init(
22
version: SDK_VERSION,
23
},
24
25
- defaultIntegrations: [...defaultIntegrations, new VueIntegration()],
+ defaultIntegrations: [...defaultIntegrations, vueIntegration()],
26
...config,
27
};
28
0 commit comments