forked from
quillmatiq.com/augment
Fork of Chiri for Astro for my blog
1export const imageConfig = {
2 // Enhanced image optimization settings
3 limitInputPixels: 268402689, // ~16K x 16K pixels
4 jpeg: {
5 quality: 85,
6 progressive: true,
7 optimizeScans: true,
8 mozjpeg: true
9 },
10 png: {
11 quality: 85,
12 progressive: true,
13 compressionLevel: 9,
14 adaptiveFiltering: true
15 },
16 webp: {
17 quality: 85,
18 lossless: false,
19 nearLossless: true,
20 smartSubsample: true
21 },
22 avif: {
23 quality: 85,
24 lossless: false,
25 speed: 5
26 }
27}