You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
DavyJones21
changed the title
The preload option with "swap" value does not work as expected
The "preload" option with "swap" value does not work as expected
Dec 27, 2024
Expected:
<link rel="preload" href="some.css" as="style" onload="this.rel='stylesheet'">
In fact:
<link rel="stylesheet" href="some.css" onload="this.rel='stylesheet'">
I think we missed
updateLinkToPreload = true
right here: https://github.com/danielroe/beasties/blob/main/packages/beasties/src/index.ts#L315The text was updated successfully, but these errors were encountered: