Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi! I started working on fixing this isse, but when I deploy, I get the following error. Are you getting the same error? ```txt Error: Cannot find module '/var/task/node_modules/hono/dist/index.js' imported...

@ErickLuis00 Thanks, I'll try it later. @alexiglesias93 It's weird. When I run it with the edge runtime using the Hono starter, it succeeds, but when I try to run it...

The main issue, the error occurs when the body doesn't include a payload, is the incoming message stream is closed when it comes to the Node.js Adapter. I think this...

Hmm, maybe Vercel changed something in the environment. I'll try again tomorrow.

Hmmm. I'm still getting errors in the Vercel environment. As noted here https://github.com/honojs/hono/issues/1256, I think we can get it working with a custom build, but I want to use Verbal...

@alexiglesias93 Ah, yes! the errors are gone, and it works with POST requests including a body! This might be a Vercel issue. Though, in the `vercel dev` local environment, I'm...

@alexiglesias93 Ah, I think so! Since the error is caused by the body being used before it reaches the Hono app handler. Can you able to disable the helper locally?

Woooow, it works well! Thanks! > I'm curious to know why is it only needed in Development (local) but not in Production (deployed)? Should be add it everywhere just to...