Bogeychan
Bogeychan
In the upcoming version of Elysia (1.3.9), there will be an option to prevent request parsing for routes: https://github.com/elysiajs/elysia/issues/1009#issuecomment-3164840334 `.all("/api/auth/*", betterAuthView, { parse: "none" })`
Hi 👋 you could do something like this: ```ts import { Elysia, type NotFoundError } from 'elysia'; type MyResponse = { code: number; data: T; status: boolean; message: 'OK' |...
`.use()` is required for TypeScript types to work properly. You can create a new logger instance in a separate file, import it and call `.use(logger)`. ```ts // logger.ts import {...
You can `ignore` incoming `TRACE` request like this: ```ts import { Elysia } from "elysia"; import { ElysiaNodeContext, node } from "@elysiajs/node"; import { logger } from "@bogeychan/elysia-logger"; import pretty...
Closing this as it is a Node.js issue rather than a library issue