#Sqooshed image quality coming out too low

3 messages · Page 1 of 1 (latest)

gilded rivet
#

How to increase quality of sqooshed image size as they are coming out too low quality and blurry

slim galeBOT
#

Hi @gilded rivet. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave:

#

Hmm, I don't know enough to give you a confident answer yet. The provided knowledge sources do not contain specific information on how to increase the quality of images processed with Squoosh in the Astro framework. However, you can configure the image service in Astro using the image.service option in your astro.config.mjs file.

Here is a basic example of how to set Squoosh as your image service:

import { defineConfig, squooshImageService } from 'astro/config';
export default defineConfig({  image: {    service: squooshImageService(),  },});

(Source: Astro Documentation (https://docs.astro.build/en/guides/images/#default-image-service))

For more detailed configuration options, you may need to refer to the Squoosh and Astro documentation or community resources.

Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: