fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

@mrwweb I did not see any comparisons, but given my (limited) experience, this excerpt from that article seems spot on:

> While those two approaches in principle allow the browser to know about loading the image even earlier, in practice there isn’t a notable difference, especially when using the tag, as at that point the entire HTML will already be loaded.

I went with <link> because *in theory* it's even faster, but in practice idk if it's that much faster given they both get high priority.

@mrwweb Given my SSG setup, it was easy to implement the <link>. But i can see how a tool like wordpress would just be like "stick fetchpriority directly on the img" cause then you don't have to know about other pieces of the document and how to insert information there.

@jimniels good point about expediency in both cases. Hadn't thought of that.