Fork of Chiri for Astro for my blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 13f0e403e527bf110a9effe0be589c9bfda2f62a 27 lines 497 B view raw
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}