Ran Inkscape's built-in optimizer and cleaned up SVG files. Removed all unnecessary cruft within SVG files and drastically reduced size from around ~130KB to ~12KB! :smiley: This is the command I ran:
for file in *.svg; do scour -i "$file" -o "$file"opt --set-precision=5 --renderer-workaround --enable-viewboxing --indent=space --nindent=2 --strip-xml-space --enable-id-stripping --protect-ids-noninkscape; mv -- "$file"opt "$file"; done
Ran Inkscape's built-in optimizer and cleaned up SVG files. Removed all unnecessary cruft within SVG files and drastically reduced size from around ~130KB to ~12KB! :smiley: This is the command I ran: