summaryrefslogtreecommitdiff
path: root/.changeset/four-houses-compete.md
diff options
context:
space:
mode:
Diffstat (limited to '.changeset/four-houses-compete.md')
-rw-r--r--.changeset/four-houses-compete.md18
1 files changed, 18 insertions, 0 deletions
diff --git a/.changeset/four-houses-compete.md b/.changeset/four-houses-compete.md
new file mode 100644
index 000000000..641bb1035
--- /dev/null
+++ b/.changeset/four-houses-compete.md
@@ -0,0 +1,18 @@
+---
+'astro': major
+---
+
+Sharp is now the default image service used for `astro:assets`. If you would prefer to still use Squoosh, you can update your config with the following:
+
+```ts
+import { defineConfig, squooshImageService } from "astro/config";
+
+// https://astro.build/config
+export default defineConfig({
+ image: {
+ service: squooshImageService(),
+ }
+})
+```
+
+However, not only do we recommend using Sharp as it is faster and more reliable, it is also highly likely that the Squoosh service will be removed in a future release.