Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi @iflamed Try this: ```ts app.all('*', (c) => { const url = new URL(c.req.path, 'https://www.example.com') return fetch(url, c.req.raw) }) ```

@iflamed I haven't tried it yet, but I think here: ```ts return await fetch(upstream, { method: c.req.raw.method, body: c.req.raw.body, credentials: c.req.raw.credentials, cache: c.req.raw.cache, headers: c.req.raw.headers, referrer: c.req.raw.referrer, referrerPolicy: c.req.raw.referrerPolicy, integrity:...

@iflamed Ah. We have to remove some properties from `c.req.raw`, right?

Hi @AGalabov !. We are also working on some things to support Zod v4. We can refer to the "For library authors" section of the Zod documents: https://v4.zod.dev/library-authors The v4...

@bolasblack that is in my backlog. Please wait a bit.

@bolasblack Looks good! I'll merge this to the next branch for the next minor version and release it soon. Thanks!

Hi @vladimirleonidovich I'll investigate it. Are you using `@hono/vite-dev-server` with Vite?

This issue is related to `@hono/vite-dev-server`. I'll transfer this.

Hi @vladimirleonidovich > `VITE_` prefixed environment variables are created to be exposed in client code so prefixing `DB_PASSWORD` with `VITE_` would be a bad idea but in this case I...