Tim Osborn
Tim Osborn
This would be great! I missed that post, tx: > [Toucan-js](https://www.npmjs.com/package/toucan-js), courtesy of Cloudflare’s very own Robert Cepa, is a reliable Sentry client for Cloudflare Workers and it’s an open-source...
> I got it working with esm by using the rewriteFrames.iteratee property to strip a leading . character from the Stackframe.filename that we were seeing on errors sent from cloudflare...
Cross-linking https://github.com/cloudflare/wrangler/issues/1529, which discusses wrangler being currently broken for subdomains
For those that come after (since this issue is still open)... There are now more examples published (eg: https://amp.dev/documentation/examples/user-consent/geolocation-based_consent_flow/?format=websites - see the left navigation for variations) > I'm looking for...
Cross posted https://github.com/ampproject/amphtml/issues/38493
Thanks @erwinmombay - any luck with this?
I had this issue when trying to "re-platform" a default remix app to cloudflare pages in a [monorepo created with nx](https://www.npmjs.com/package/@nrwl/remix) `npx create-nx-workspace@latest nx --preset=@nrwl/remix --project=remix-nx`. There were no imports...
> Anyone who was able to solve this? Works for me with the adjustments [I mentioned above](https://github.com/remix-run/remix/issues/3103#issuecomment-1125627098) @mcmxcdev 👍
This was super helpful to me, as [jest-fetch-mock](https://github.com/jefflau/jest-fetch-mock/issues/218#issuecomment-1078606077) doesn't return actual responses! Here's the wrapper I'm using now: ```ts // @test/helpers/MockAgent.ts type RouteMatcher = ( input: Request | string, init?:...
Works for me if I call the handler directly, but not with `mf.dispatchFetch`: Works: ```ts // src/index.ts export async function handleRequest(request: Request, env: Bindings) { const res = await fetch("http://not-a-real-domain.foo");...