Viktor Vincze
Viktor Vincze
I'm facing the same issue using Cloudflare streams, but on desktop. I pause the player, leave it idle for a while, when I come back and try to play again,...
It's the same issue when I want to open modal from a dropdown. Add `onClick={(ev) => ev.stopPropagation()}` on the trigger.
I'm facing the same issue. I'm removing manually the video from the manifest. ```ts const parser = new DOMParser(); const xmlDoc = parser.parseFromString(xmlString, "text/xml"); // Remove video track from manifest...
I have a solution that's going to stay backward compatible and won't break anything. ``` const handler = useRef("pointer") onPointerDown={(ev) => { if (ev.pointerType === "touch") { handler.current = "click"...
So this is the reason the guide didn't work for me. I had to use `import * as DASH` but dynamic imports seems to be completely broken.
Just check against the previously released version. If it doesn't include one that was included before, then automatically bump major version and list them in the release. It's a pretty...
As you may know, during SSR client-side components are also run on the server. In my case in my Player component. Typicaly these cases are solved by having an `if...
Yes, with dynamic it works. But I don't want that, I want to bundle Dash using normal import for faster initial playback. On Tue, 1 Apr 2025, 14:53 Burak Kara,...
I'm also curious. Now I'm using React 18 on prod and made Apollo SSR work with Lazy for bundle splitting. I wonder if it'll offer me any significant improvement.
No, I tried to add it, but then it had other issues. Anyway, the current app router doesn't support monkey patching anymore, they changed the router's code a few updates...