Yusuke Wada
Yusuke Wada
This can be closed. Thanks.
Hi @patrickkabwe Could you share the workable code to reproduce the bug? The following works fine: ```ts import { Hono } from 'hono' const app = new Hono().basePath('/api/v1/') app.post('/foo', (c)...
@patrickkabwe > the router would automatically append it to the request. That is not a bad idea. But, I think some users may think of writing `basePath`, so there is...
Hi @sikaili99 I know that. However, since `app.request()` can also receive a Request object, we must consider how to handle the request URL of that Request object. Either way, we...
I will follow the current following specifications. > I know that. However, since `app.request()` can also receive a Request object, we must consider how to handle the request URL of...
This is not a bug! You should write the code as mentioned above. ```ts const app = new Hono().get('/search', (c) => c.json({ hello: 'world' })) ``` Closing.
Hi @ptrxyz There are no plans to support this in the core of Hono, but it would be nice to create a third-party middleware or helper. This article is very...
@yossydev Please wait a minute! I'd like to consider it a little more time.
Hi @yossydev The `on hold` label does not mean to do this immediately, but to leave it unattended. So, let's leave this Issue open for a while!
I think we don't have to allow `any`. So closing this issue now.