Yusuke Wada
Yusuke Wada
@sugar-cat7 Thank! Let's go!
@sugar-cat7 No worry. I'm fixing it.
@umutahmet You should add the [`ssgParams`](https://hono.dev/docs/helpers/ssg#ssgparams) middleware imported from `hono/ssg`: ```ts // app/routes/blog/_middleware.ts import { createRoute } from 'honox/factory' import { ssgParams } from 'hono/ssg' export default createRoute( ssgParams(async ()...
At first glance, I don't think this is needed. We already have the [built-in Cache Middleware](https://hono.dev/docs/middleware/builtin/cache). If you want to cache just "Response", it's enough to use it.
@muningis Thank you for the explanation! Makes sense. > Also, correct me if I'm wrong, but that Cache API helps cache'ing it on Cloudflare/DenoDeploy level, basically "edge/cdn" rather than on...
Hi @KaelWD Thank you for the issue. This is not a bug. But as you feel, it may not be intuitive. I'll consider this issue for a while.
Hi @KaelWD Thanks. Can you create a separate issue?
@pincman Can you provide minimal code to reproduce it? It's long and verbose, including unnecessary modules to reproduce.
@pincman thank you for giving the code. Though you might not like it, this is not a bug. This issue is not only `@hono/zod-openapi` matter, it's correct `hono` behavior. If...