Daniel Tao
Daniel Tao
Hi, if you don't plan to merge this, can you close this issue? Need some indication on whether to expect this functionality from UI-TARs or not
Just adding a comment here to note that I'm also running into this error - app will compile without the Clerk middleware, but will not with it
Hoping that https://github.com/denoland/deno/pull/27455 will fix. Happy to test Clerk and report back when it is merged
Can confirm now running into the same issue. What's interesting is I can clone and run https://github.com/clerk/nextjs-auth-starter-template and run it without any issues. However, if I lock our main codebase...
The issue is probably still with Clerk (removing `middleware.ts` containing the Clerk middleware does not hit the issue), but ```typescript import { clerkMiddleware, createRouteMatcher } from "@clerk/nextjs/server"; const isProtectedRoute =...
Also would appreciate this - we just ran into a case where we wanted to write a POST handler that doesn't have a body. We can't change the method for...