Yusuke Wada
Yusuke Wada
@alan-khosro What command did you run? `bun run src/index.ts`?
Hi @KunalSin9h You may use the `env()` function in `hono/adapter`. https://hono.dev/helpers/adapter#env
Or you can write the following: ```ts app.use('*', async (c, next) => { await githubAuth({ client_id: env(c), client_secret: env(c), //.. })(c, next) }) ```
Hi. @sor4chi Can you handle this issue?
Hi @swyxio ! Here's a snippet. Do you think reading this will help you? https://hono.dev/snippets/validator-error-handling If it is not enough, we need to add more information. Also, the location of...
Sounds nice. Also @sergiodxa implements "Typed Envs": https://github.com/sergiodxa/remix-hono#typed-envs-with-zod
@danielbuechele Thank for raising the issue. @sam-lippert Could you take a look?
Hi @sam-lippert Does that mean creating options like `passThroughRequest: boolean`?
@sam-lippert Thanks! Understood well. Sounds good! There is no need to omit `request` and `context`.
Hi @bramses This `jest` issue is troublesome. If possible, please try using `vitest`. It might not cause the error.