Tmk

Results 32 comments of Tmk

I didn't add `QueryClientProvider` at first (I mistakenly assumed that `trpc.Provider` had already done this), `trpc.hello.useQuery()` works fine but `trpc.hello.useMutation()` throws an error, it's a little confusing

Node.js will send requests directly by default. solution 1: https://www.google.com/search?q=clash+enhanced+mode solution 2: ```shell pnpm add undici ``` src/translate.tsx ```diff +import { ProxyAgent, setGlobalDispatcher } from 'undici' import { Main }...

browsers will follow the system's proxy config, but terminals and other apps may not. for example, you need to declare env vars in shell config files like `.bashrc` to work...

It can significantly improve the first paint time in a heavy-dependent app like Calendar.

I agree with you that the number is not very precise, it's affected by many factors, including warm-up, execution order, cpu occupation, etc. I showed this just for simplicity and...

`refactor/mv3` is deprecated, please use `main` branch

I think it's hard to make HMR working for contentScript? for example, the script is injected to a webpage(.e.g https://example.com),when we try to connect with vite server(protocol http), it should...

the reproduction link is invalid, can u provide a new one?

> when I try to display a stored variable into background/index.ts: `background/index.ts` is bundled by tsup, so you should add the config in `tsup.config.ts`: ```ts // tsup.config.ts export default defineConfig(()...