Mathys
Mathys
Hey, I have the same problem did you found an anwser ?
Hey @nakasyou here the full code that you ask ```ts boostrapApp().then((httpConfig) => { const logger = IocContainer.container.get(LoggerService); const controllerRoot = IocContainer.container.get(ControllerRoot); const socket = IocContainer.container.get(SocketProvider); try { serve({ async fetch(req,...
@nakasyou I found the problem but I'm still searching for the anwser. according to[ hono doc](https://hono.dev/getting-started/bun#obtaining-request-ip-address) you can retrieve user ip like the following : ```ts const app = new...
@nakasyou I did this workaround, it's working, hope hono could fix this somedays. Thanks again Also maybe this [section](https://hono.dev/getting-started/bun#obtaining-request-ip-address) need some edit ```ts serve({ async fetch(req, server) { const untypedServer...