async server introduction

This commit is contained in:
cjkas 2026-03-21 19:21:03 +01:00
parent 984a2106f3
commit f83c408fe7
4 changed files with 58 additions and 9 deletions

View file

@ -133,12 +133,12 @@ def minify_svg(text: str) -> str:
MINIFIERS = {
".html": minify_html,
".htm": minify_html,
".css": minify_css,
# ".html": minify_html,
# ".htm": minify_html,
# ".css": minify_css,
# ".js": minify_js,
# ".json": minify_json,
".svg": minify_svg,
# ".svg": minify_svg,
# ".xml": minify_svg, # same approach works for generic XML
}