all repos — homestead @ 98603e2631864f28de6aae1d98ca663802debd93

Code for my website

compress hidden files (e.g. .well-known/)

Alan Pearce
commit

98603e2631864f28de6aae1d98ca663802debd93

parent

798e6679d780e1b53153ce8141edc44ac8a99292

1 file changed, 1 insertion(+), 1 deletion(-)

jump to
M MakefileMakefile
@@ -18,7 +18,7 @@ clean:
rm -rf ./public rm -rf ./.*stamp -to_compress := $(shell fd . public --type=file -e html -e xml -e xsl -e txt -e asc) +to_compress := $(shell fd --hidden . public --type=file -e html -e xml -e xsl -e txt -e asc) brotli_files := $(patsubst %, %.br, $(to_compress)) gzip_files := $(patsubst %, %.gz, $(to_compress)) zstd_files := $(patsubst %, %.zst, $(to_compress))