Description
It seems that the Astro middleware is not working properly when running on Cloudflare Workers. This was found when checking against Astro 6 on Cloudflare a lot of attributes got dropped.
We need to investigate and double check if this addMiddleware is getting added on Cloudflare Workers:
|
addMiddleware({ |
|
order: 'pre', |
|
entrypoint: '@sentry/astro/middleware', |
|
}); |
Description
It seems that the Astro middleware is not working properly when running on Cloudflare Workers. This was found when checking against Astro 6 on Cloudflare a lot of attributes got dropped.
We need to investigate and double check if this
addMiddlewareis getting added on Cloudflare Workers:sentry-javascript/packages/astro/src/integration/index.ts
Lines 241 to 244 in bb891e6