Yusuke Wada
Yusuke Wada
Or, it could output a manifest and refer to it during development, but I think that would decrease the performance.
@nakasyou CI fails. Could you run `bun run lint:fix` (As you said on X, I might have made a mistake in configuring Prettier and ESLint)?
Hey @nakasyou Looks great! It's finished. This is a new feature, so I'm planning to release it in the next minor release, `v4.4`. So, I leave this PR not merged...
Hi @curioustolearn Now `deno.land/x` is not used to publish the Deno module. Use [the JSR package](https://jsr.io/@hono/hono) instead of it: ```ts import { Hono } from 'jsr:@hono/hono' import { getConnInfo }...
Thanks @Amorim33 ! @watany-dev Could you review this?
Hi @janat08 Please share the minimal project to reproduce it.
Hi @Amorim33 Thanks! Can you run `bun run format:fix && bun run lint:fix` to format the code?
@janat08 Thanks! Please add the following to `src/index.ts` or `global.d.ts`. ```ts declare module 'hono' { interface ContextRenderer { (content: string | Promise, props: { title: string }): Response } }...
@Amorim33 Thanks! I'll merge this now.
@janat08 How about using `PropsWithChildren`? ```tsx import type { PropsWithChildren } from 'hono/jsx' export const Layout = ({ children, title }: PropsWithChildren) => { return ( {title} {children} ) }...