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
Media Library page fetched 100 items on first load and rendered every
thumbnail eagerly, firing ~100 concurrent resize requests through the
Astro image endpoint on mount. Adds loading="lazy" to all thumbnail
<img> tags and trims the initial page size to 40.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Fixes slow load and scroll on the Media Library admin page. Thumbnails now use native `loading="lazy"` so the browser only fetches images as they scroll into view, instead of firing every visible page's worth of resize requests on mount. The initial page size is also reduced from 100 to 40 items.
0 commit comments