Skip to content

Commit b0496ea

Browse files
authored
fix(astro): use correct package name for CF (#10099)
Hopefully this fixes #9777
1 parent 3160419 commit b0496ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/astro/src/integration/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export const sentryAstro = (options: SentryOptions = {}): AstroIntegration => {
8484
// Prevent Sentry from being externalized for SSR.
8585
// Cloudflare like environments have Node.js APIs are available under `node:` prefix.
8686
// Ref: https://developers.cloudflare.com/workers/runtime-apis/nodejs/
87-
if (config?.adapter?.name.startsWith('@astro/cloudflare')) {
87+
if (config?.adapter?.name.startsWith('@astrojs/cloudflare')) {
8888
updateConfig({
8989
vite: {
9090
ssr: {

0 commit comments

Comments
 (0)