import { defineIntegration, GLOBAL_OBJ } from '@sentry/core'; const vueIntegration = defineIntegration((options = {}) => { return { // NOTE: This name is different from the original vueIntegration's name. name: "NuxtVueIntegration", setup() { GLOBAL_OBJ._sentryNuxtVueIntegrationOptions = options; } }; }); export { vueIntegration }; //# sourceMappingURL=vueIntegration.js.map