From 65a409dd231e76c9ac0b8dce6bd99b02dbae4d12 Mon Sep 17 00:00:00 2001 From: Jeroen Domburg Date: Thu, 5 Feb 2015 23:10:14 +0100 Subject: [PATCH] Add css mimetype --- user/httpd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/user/httpd.c b/user/httpd.c index b0b5210..285c6fe 100644 --- a/user/httpd.c +++ b/user/httpd.c @@ -66,6 +66,7 @@ typedef struct { static const MimeMap mimeTypes[]={ {"htm", "text/htm"}, {"html", "text/html"}, + {"css", "text/css"}, {"js", "text/javascript"}, {"txt", "text/plain"}, {"jpg", "image/jpeg"},