add minify and pre-compress

This commit is contained in:
Yann Verry 2026-02-21 14:23:10 +01:00
parent 4e9a2f2fc4
commit d20e767709

View file

@ -14,6 +14,7 @@ git pull --recurse-submodules
# Run
```bash
hugo
hugo --minify
for i in $(find public -type f \( -iname \*.js -o -iname \*.css -o -iname \*.html \) );do zstd -f --ultra -k $i ; gzip -f -9 -k $i ; brotli -f -k $i;done
rsync -arvz --delete public/ peach.verry.org:/srv/www/yann/verry.org/
```
```