From 5a5382cfcb1457e4db4634a67d7125d85e1a6080 Mon Sep 17 00:00:00 2001 From: summer-espresso <72715230+summer-espresso@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:36:08 +0900 Subject: [PATCH] Add gzip mime type --- include/crow/mime_types.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/crow/mime_types.h b/include/crow/mime_types.h index 7cf96c20b..b841096fb 100644 --- a/include/crow/mime_types.h +++ b/include/crow/mime_types.h @@ -5,6 +5,7 @@ namespace crow { const std::unordered_map mime_types{ + {"gz", "application/gzip"}, {"shtml", "text/html"}, {"htm", "text/html"}, {"html", "text/html"},