·
7271 commits
to main
since this release
Minor Changes
-
#4738
fad3867ad
Thanks @tony-sull! - Adds a new built-in image service based on web assembly libraries 🥁 web container support!Migration: Happy with the previous image service based on
sharp
? No problem! Installsharp
in your project and update your Astro config to match.npm install sharp
--- import image from '@astrojs/image'; export default { // ... integrations: [ image({ serviceEntryPoint: '@astrojs/image/sharp', }), ], }; ---