Files
public/fonts/static/woff2.sh
2025-06-05 21:51:33 -06:00

8 lines
185 B
Bash
Executable File

#!/bin/bash
# Compress all font files in the current directory using woff2_compress
for font in *.ttf *.otf; do
if [[ -f "$font" ]]; then
woff2_compress "$font"
fi
done