How to get strict inference with RPC
Hi!
. I somewhat got around this by adding as const
at the end of { message: "Hi!"}
so it looked like { message: "Hi!"} as const
but then I couldn't assign variables to the response of that API call because the API calls response is infered as readonly
...Hono Vite DevServer: Wrangler Workers - Proxy is not initialized
How to connect Vite, Hono and Cloudflare Workers?
wrangler.toml
doesn't get picked up and it fails to load environment variables.
```typescript
import { defineConfig } from 'vite'
import devServer from '@hono/vite-dev-server'...Vercel errors and noob questions
Hono and cloudflare bindings
hono + vercel + monorepo + turborepo -- what is the trick?
Unable to render jsx with bun
error: Cannot find module 'react/jsx-dev-runtime'
.
Sample code:
```ts
import {Hono} from 'hono'...Can I use JavaScript?

Serve Static file fail

OpenAPI route with 204 + content: {} cause type error with c.body(null, 204)
@hono/zod-openapi 0.18.4 @hono/zod-validator 0.4.3...
How to middleware to recursive fetches (ESI subrequests)
Hono: getCookie() Returns Undefined — Need Help!

OpenAPI not validating content type?
double encoding oauth redirect uri
redirect_uri=https%253A%252F%252F...
❌
- Local: redirect_uri=https%3A%2F%2F...
✅
Setup:...How to Retrieve Session in Next.js RSC Without Getting 401 (Next.js + Hono Integration)
Type Error with zodValidator and arktypeValidator
Getting corrupted binary responses instead of JSON from Hono gateway service with axios
React Native / Expo

Inferring the response type of a handler
JSX with no-value attribute
<input data-bind-foo />
or <div data-signals-bar></div>
. But Hono converts them to <input data-bind-foo="true" />
and <div data-signals-bar="true"></div>
, causing datastar error.
Is it possible to turn off that feature without using raw()?
...