Skip to content

Commit

Permalink
ref(vue): use functional vue integration as default (#10226)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad authored Jan 18, 2024
1 parent 300a145 commit 4840408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vue/src/sdk.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { SDK_VERSION, defaultIntegrations, init as browserInit } from '@sentry/browser';

import { VueIntegration } from './integration';
import { vueIntegration } from './integration';
import type { Options, TracingOptions } from './types';

/**
Expand All @@ -22,7 +22,7 @@ export function init(
version: SDK_VERSION,
},
},
defaultIntegrations: [...defaultIntegrations, new VueIntegration()],
defaultIntegrations: [...defaultIntegrations, vueIntegration()],
...config,
};

Expand Down

0 comments on commit 4840408

Please sign in to comment.