Yusuke Wada
Yusuke Wada
> great thanks! Good! > would be happy to raise a PR for the docs if you would like? Indeed, that was confusing, and it would be helpful if you...
This is not actually Hono's issues, e.g., bugs or features. So, now, closing.
Hi @watany-dev How about creating a Plugin system for the future? ```ts import { sitemap } from 'hono/ssg/sitemap' import { robotsTxt } from 'community-plugin-robots-txt' toSSG(app, fs, { plugins: [sitemap(), robotsTxt()],...
Hi @usualoma ! To ensure I understand correctly, I want to know the advantages of using FilePatternRouter for file-based routing. I think marking `/foo/*` as `isMiddleware` is a key point....
Hi @usualoma, Thank you for explaining the details. I fully understand now. It's great to have a router specialized for file-based routing. As you mentioned, the patterns used in file-based...
Hi @watany-dev I think `SSGResultPaths` is not bad, and I can imagine the use case of a "hybrid app." Also, I don't think the implementation will be that complicated.
Hi @subhendupsingh I cannot reproduce that behavior in my environment. If it is possible, I would like you to create a project to reproduce it and share it with us....
cc: @hideokamoto
This issue might be due to a mismatch between `hono` and `zod-validator`. As a possible solution, you could try using the `npm:` specifier as follows: ```ts import { Hono }...
This code will work correctly: ```ts import { Hono } from 'npm:hono' import { zValidator } from 'npm:@hono/zod-validator' import { z } from 'npm:zod' const app = new Hono() const...