From e966d94c0be0dcc9f4534e564345a3a1aaa51b51 Mon Sep 17 00:00:00 2001 From: Deluan Date: Tue, 8 Feb 2022 15:17:35 -0500 Subject: [PATCH] Force correct mime-type for JS and CSS files --- consts/mime_types.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/consts/mime_types.go b/consts/mime_types.go index 0ce83d310..c05a08638 100644 --- a/consts/mime_types.go +++ b/consts/mime_types.go @@ -57,4 +57,8 @@ func init() { for ext, typ := range imageFormats { _ = mime.AddExtensionType(ext, typ) } + + // In some circumstances, Windows sets JS mime-type to `text/plain`! + _ = mime.AddExtensionType(".js", "text/javascript") + _ = mime.AddExtensionType(".css", "text/css") }