oszuidwest / teksttv

*** REBUILD WIP *** Tekst TV voor ZuidWest TV en Rucphen RTV gebaseerd op React en Tailwind CSS
Mozilla Public License 2.0
4 stars 0 forks source link

Images preloaden #11

Closed rmens closed 2 weeks ago

rmens commented 3 weeks ago

Kunnen we alle images in het json-schema pre-loaden? Volgens web.dev is het een kwestie van

<link rel="preload" as="image" href="important.png">
rmens commented 3 weeks ago

React 19 RC, "dat ieder moment uit kan komen" (zal je altijd zien), heeft een preload. Maar het is geen echte preload. "An instruction not a directive".

So to sum up. the observe behavior is intended. A call to preload is an instruction not a directive, and React uses heuristics to optimize resource loading and in the cases you outlined the stylesheet is available before we could send the preload so we omit it to save on document byte size and to avoid mis-prioritizing the resource fetch.

https://github.com/facebook/react/issues/30056