Karim

Results 8 comments of Karim

Hi @ttypic My goal was to prohibit the connection to ably from multiple clients with the same session (session of my auth system), if someone opens tabs in two different...

Looks like I managed to use Typia with Next.js 14 It works on both the client side and the server side, I used the following configurations on next.config.js: ``` /**...

@bradennapier I understand... but how can I make it work with the generation mode? Because I wish I could use it in development mode too... so I should find a...

@ristomatti I had thought about this solution too, but there is a passage that is not clear to me... Let's make a guess... I have my page.tsx file where I...

@ristomatti Sorry, now I've fixed the file tree that I tried to describe in my previous comment, Anyway no I can't do as you say, because I have the following...

@ristomatti The only thing that comes to my mind is to "overwrite" in development mode the typia package with a typia.assert function that does nothing... like this: ``` export function...

@ristomatti I could do something like this: lib/typia.ts ``` import prodTypia from 'typia'; const devTypia = new Proxy( {}, { get: () => (...args: any) => {}, } ) as...

@ristomatti Hi, yes in the end I went with the last snippet of code, personally it's fine with me too since I only have to use typia to prevent an...