Kabir Asani

Results 6 comments of Kabir Asani

Prisma and BunJS don't particularly go well on Docker so here is a Dockerfile that'll solve your problems once and for all. ```Dockerfile # > 1. OS SET UP --...

Any plans to add this? Or is this still up for discussion? Would be a game-changer if implemented natively for flutter.

Returning an object in v1.0.3 is not converting to response to `application/json` type. Rather, it sends it out as a `text/plain`. How do I fix this?

@PureDizzi Thank you! This seems to be working but it's ugly. We need a fix on this!

```typescript import { Elysia } from "elysia"; class Data { message: String; constructor(message: String) { this.message = message; } } const app = new Elysia() .get("/ping", ({ set }) =>...

But is it really a fool-proof solution? Because then I'd have to set `Content-Type` explicitly as well.