9 lines
178 B
Bash
Executable file
9 lines
178 B
Bash
Executable file
#!/bin/sh
|
|
|
|
hugo
|
|
find ./public -type f -regex ".*\.\(css\|html\|js\|json\|svg\|xml\)$" \
|
|
-exec brotli --best -f {} \+ \
|
|
-exec gzip --best -k -f {} \+
|
|
sync
|
|
sleep 3
|
|
exit 0
|