@react-email/render@2.0.10

semaphoreui/semaphore@react-email/render@2.0.10Jul 2, 2026by github-actions[bot]

AI Summary

Cleans up the rendered HTML output by removing React's auto-injected resource hints that email clients typically ignore.

Key Highlights

  • Strips auto-injected '<link rel="preload" as="image">' tags
  • Email clients ignore preload hints, so they were removed as noise
  • Preserves other link tags like stylesheets and fonts

New Features

  • Removed unused React preload hints from output

Full Release Notes

### Patch Changes

* c300cfb: Strip React's auto-injected `<link rel="preload" as="image">` resource hints from rendered email HTML. React adds one to the document `<head>` for every `<img>` during SSR, but email clients ignore preload hints, so they were just noise in the output. Other `<link>` tags (stylesheets, fonts, user-authored non-image preloads) are left untouched.