Yusuke Wada
Yusuke Wada
@Marplex ahhhhhhh. Sorry. I wanted to say "I think it's **not** necessary!". So, you don't have to create it!
Hi @stukennedy Thanks! That's a good suggestion. I've left the comments. Please check them.
Hi @mfulton26 Great idea! I know some users use Hono inside a service worker in production. So it's not only for magic. I'd like to have it.
Now, we have Service Worker Adapter and the document on our website: https://hono.dev/docs/getting-started/service-worker We can close this issue!
Hi @ryuapp I think the current flow is not bad for DX. Do you mean like this? 
> I don't like waiting for cloning the template while my selecting. Ahhh, I see. That will be good.
@MathurAditya724 yes!
Hi @flexchar Currently, Hono does not provide source maps, which likely means that Sentry Middleware does not support it. Related to https://github.com/honojs/hono/issues/1712
Hi @Jayllyz How about using `z.string()` instead of `{ type: 'string' }`? ```ts import { OpenAPIHono, createRoute, z } from '@hono/zod-openapi' const app = new OpenAPIHono() export const healthCheck =...