Skip to content

Commit 4840408

Browse files
authored
ref(vue): use functional vue integration as default (#10226)
1 parent 300a145 commit 4840408

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/vue/src/sdk.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SDK_VERSION, defaultIntegrations, init as browserInit } from '@sentry/browser';
22

3-
import { VueIntegration } from './integration';
3+
import { vueIntegration } from './integration';
44
import type { Options, TracingOptions } from './types';
55

66
/**
@@ -22,7 +22,7 @@ export function init(
2222
version: SDK_VERSION,
2323
},
2424
},
25-
defaultIntegrations: [...defaultIntegrations, new VueIntegration()],
25+
defaultIntegrations: [...defaultIntegrations, vueIntegration()],
2626
...config,
2727
};
2828

0 commit comments

Comments
 (0)