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 3ee5977 commit fa584e6Copy full SHA for fa584e6
packages/astro/src/integration/index.ts
@@ -88,7 +88,10 @@ export const sentryAstro = (options: SentryOptions = {}): AstroIntegration => {
88
updateConfig({
89
vite: {
90
ssr: {
91
- noExternal: ['@sentry/astro'],
+ // @sentry/node is required in case we have 2 different @sentry/node
92
+ // packages installed in the same project.
93
+ // Ref: https://github.com/getsentry/sentry-javascript/issues/10121
94
+ noExternal: ['@sentry/astro', '@sentry/node'],
95
},
96
97
});
0 commit comments