SE-46 - Compress Luxe Demo Images #161
Labels
Jira:SE
Jira project this issue was imported from
msg-backlog
Priority:Minor
Priority of the ticket
Story
Hi,
ISSUE: The images in the Luxe prepackage website are way too big.
FIX: We need to compress the image.
STEPS:
Here is the command line that I used:
find . -name "*.webp" -print0|xargs -I{} -0 magick mogrify -quality 80 {}
find . -name "*.jpg" -print0|xargs -I{} -0 magick mogrify -quality 80 {}
The text was updated successfully, but these errors were encountered: