/Wiki/sources/honojs__hono/2026/https-hono-dev-llms-full-txt-the-hono-jsx-dom-ru-fdbc6e9853bd-the-hono-jsx-dom-runtime-s0096-c0000.md
The `hono/jsx/dom` runtime - hono-docs
The hono/jsx/dom runtime Source evidence: /Sources/raw/honojs hono/honojs hono.md Canonical citation: https://hono.dev/llms full.txt the hono jsx dom runtime...
The hono/jsx/dom runtime
Source evidence: /Sources/raw/honojshono/honojshono.md Canonical citation: https://hono.dev/llms-full.txt#the-hono-jsx-dom-runtime
Summary
There is a small JSX Runtime for Client Components. Using this will result in smaller bundled results than using hono/jsx. Specify hono/jsx/dom in tsconfig.json. For Deno, modify the deno.json. ```json { "compilerOptions": { "jsx":...
Content
There is a small JSX Runtime for Client Components. Using this will result in smaller bundled results than using hono/jsx. Specify hono/jsx/dom in tsconfig.json. For Deno, modify the deno.json.
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx/dom"
}
}Alternatively, you can specify hono/jsx/dom in the esbuild transform options in vite.config.ts.
import { defineConfig } from 'vite'
export default defineConfig({
esbuild: {
jsxImportSource: 'hono/jsx/dom',
},
})