6 lines
174 B
Bash
6 lines
174 B
Bash
#!/bin/sh -l
|
|
|
|
sh -c "hugo"
|
|
sh -c "find ./public -type f -regex '.*\.\(css\|html\|js\|json\|svg\|xml\)$' -exec brotli --best -f {} \+ -exec gzip --best -k -f {} \+"
|
|
|
|
exit 0
|