1
Fork 0

add missing text/css content type

This commit is contained in:
リキ萌 2025-01-10 14:10:23 +01:00
parent 39a6155bdc
commit cf29293fd6

View file

@ -95,6 +95,7 @@ fn guess_content_type(extension: &str) -> Option<&'static str> {
match extension {
"html" => Some("text/html"),
"js" => Some("text/javascript"),
"css" => Some("text/css"),
"woff" => Some("font/woff2"),
"svg" => Some("image/svg+xml"),
"atom" => Some("application/atom+xml"),