Nedim Arabacı

Results 55 comments of Nedim Arabacı

@ANDREYDEN thanks a lot! I'm very busy these days, so I can't contribute too often, but happy to accept PRs!

Hi, sorry but, I didn't understand the issue here. Can you give more context with examples, please?

that is the question: which version to put in .nvmrc? - put `lts/*` - are we sure the scaffolded app running on all LTS versions? - put `18 or 16...

seems related to: https://tanstack.com/query/v4/docs/guides/network-mode > Since React Query is most often used for data fetching in combination with data fetching libraries, the default network mode is [online](https://tanstack.com/query/v4/docs/guides/network-mode#network-mode-online). > In this...

If you want also mutations to run: ```typescript ... queries: { networkMode: process.env.NODE_ENV === "development" ? "always" : "online", }, mutations: { networkMode: process.env.NODE_ENV === "development" ? "always" : "online",...

But, if you wanna develop an offline UX, you should revert it back.

@c-ehrlich it is not a tRPC behavior actually. It is @tanstack/react-query configuration. (since tRPC uses react-query under the hood it looks like that) I agree with you about not changing...