Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi @yoshikouki @babie > I would like to place the client component `chat.tsx` in the same directory as the server-side component `routes/chats/[id].tsx` which is closer in purpose (e.g. `chat.island.tsx`) +1...

Hey! I've made PR #140, enabling putting an island component, not only in the `/app/islands` directory. I think this is a good change. So, this will be merged. But if...

Hi you all. I've released [v0.1.12](https://github.com/honojs/honox/releases/tag/v0.1.12). This release includes the new feature which enables placing islands on the same directory of pages instead of `/app/islands/*`: ``` ./app ├── client.ts ├──...

Hi @seivan Currently, Hono has the [RPC feature](https://hono.dev/guides/rpc) that can enable the same purpose. So, I don't want to implement it now.

Hi @AlexisWalravens > Because NextJS overrides `fetch`'s `RequestInit` type to also include the `next` key to handle cache at the fetch level Ahhhh, indeed, Next.js overrides `fetch`! So, will the...

@AlexisWalravens Sorry for the late response. I've thought it. A method like `client.index.$get` can receive the `fetch` option, so perhaps you can pass the `next` option though the type warning...

Hi @AlexisWalravens Thank you for suggesting and explaining! > It works, but I think having to redeclare the entire fetch function every time is hurting the DX. The `hc` function...

Hi @ryuapp ! Thanks for the suggestion. I've implemented the feature of the `Script` component to support it: #93. How about this?

Hi @ryuapp Can you share the example using Tailwind CSS with this PR? I want to know the setting. Using PostCSS?

I'm trying to use Remix on Hono's Vite dev-server. In that app, it can support "css side-effects imports" which is a matter of this issue: https://github.com/yusukebe/hono-and-remix-on-vite/blob/ff51520bf0f8f42896ae0d4bacf596d2cb216331/app/root.tsx#L3 So, we may make...