Source code of my website
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

⚡ : extend precompress regex to include woff2 files

+1 -1
+1 -1
mise.toml
··· 32 32 [tasks.precompress] 33 33 description = "Precompress static resources" 34 34 run = ''' 35 - COMPRESSREGEX=".*(html|css|js|xml|ico|svg|md|png|webp|pdf)$" 35 + COMPRESSREGEX=".*(html|css|js|xml|ico|svg|md|png|webp|pdf|woff2)$" 36 36 find public/ -type f -regextype egrep -regex $COMPRESSREGEX | xargs zstd -15 -f 37 37 ''' 38 38