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 dcdf074 commit 86331fcCopy full SHA for 86331fc
1 file changed
packages/react-router/src/vite/makeCustomSentryVitePlugins.ts
@@ -45,7 +45,11 @@ export async function makeCustomSentryVitePlugins(options: SentryReactRouterBuil
45
// only use a subset of the plugins as all upload and file deletion tasks will be handled in the buildEnd hook
46
return [
47
...sentryVitePlugins.filter(plugin => {
48
- return ['sentry-telemetry-plugin', 'sentry-vite-release-injection-plugin'].includes(plugin.name);
+ return [
49
+ 'sentry-telemetry-plugin',
50
+ 'sentry-vite-release-injection-plugin',
51
+ 'sentry-vite-component-name-annotate-plugin',
52
+ ].includes(plugin.name);
53
}),
54
];
55
}
0 commit comments