Yusuke Wada

Results 1706 comments of Yusuke Wada

@3w36zj6 Honestly, I think both are okay in `hono/ssg` or `@hono/ssg-plugins-essential`. It may be better not to include plugins in `hono/ssg`, but to put them in `redirectPlugin`. What do you...

Hi @GibzClt To change the response after `next`, can you use this syntax? It's documented here: https://hono.dev/docs/guides/middleware#modify-the-response-after-next ```ts function redirectMid() { return createMiddleware(async (c, next) => { console.log('Before handler') await...

@UliPrantz Is this really a Hono-side issue? Can you try it without Hono?

Hi @UliPrantz I've never tried it on Supabase, but I think it's a Supabase side issue. The same code works well on other platforms. So, keep this as is, and...

Hi @universse ! Thank you for your proposal. It seems to be good. One question. > a non-Error instance What kind of "non-Error instance" do you mean? I want to...

Hi @ctsstc Thank you for the comment and your thoughts. > It seems dirty to have us wrap our entire router/app in a try/catch block. I also think it's not...

The strength of `onUnknownError` is that it does not introduce a breaking change.

@usualoma Thank you for the reply! I also think `onUnknownError` is not good when I implemented the draft https://github.com/honojs/hono/pull/4411. It will be complex and verbose. It's just a perspective for...

Ah, they may face only type issues.