Hello, In my react app previously I had all rendered on client side. Initially default code with dagre was not properly positioning nodes that are bigger than default width/height, so I applied solution from here: https://github.com/xyflow/xyflow/issues/991#issuecomment-808862965
Now I want to move all of this logic to server. And I'm hittint the same issue of wrong positioning again. I'm not rendering reactFlow component itself on server, but I'm pre-rendering the nodes for it. How do I prerender nodes on server side so that each node gets correct measured.width and measured.height? And if there's no way to do that, what are my other options on server side?
General goal is to provide the correct nodes positions to client-side right away, without double step of first calculating incorrectly and then adjusting on client side.