dmagunov

Results 6 comments of dmagunov

Thanks! I also don't see any performance difference. It would be nice to merge this into the main branch. If you would need any help, please let me know.

I just cloned, an existing [example](https://codesandbox.io/s/github/pmndrs/use-gesture/tree/main/demo/src/sandboxes/card-zoom), which is failing on the latest version

Thanks, just to clarify, an example sandbox is failing on the latest version, that is why I downgraded the library

I've made some research on this topic and have shared my findings in an [article](https://github.com/dmagunov/snapshots.lol/wiki/Collaborative-editing-with-Yjs-and-Monaco-editor-in-Next.js-application#solution-2-load-monaco-editor-from-node_modules). Hopefully, it will be useful.

Hi, I'm experiencing the same issue with TanStack/Router. HMR doesn't working when I make changes in `__root.tsx`. I've tried various combinations of TanStack/Router (version 1.78.3 and below) with Vite (version...

Extracting root route component fixed an issue (thanks Claude): From: ```javascript createRootRoute({ component: () => () }); ``` To: ```javascript createRootRoute({ component: RootComponent }); ```