From 2b02a402a05b637ca9c0af4a86525d299c387daa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Wed, 27 Apr 2016 21:39:57 +0200 Subject: [PATCH] commands: Sett mime type for CSS in Hugo server Fixes #2104 --- commands/server.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/commands/server.go b/commands/server.go index 345d2dec6..3564890f4 100644 --- a/commands/server.go +++ b/commands/server.go @@ -24,13 +24,14 @@ import ( "strings" "time" + "mime" + "github.com/spf13/afero" "github.com/spf13/cobra" "github.com/spf13/hugo/helpers" "github.com/spf13/hugo/hugofs" jww "github.com/spf13/jwalterweatherman" "github.com/spf13/viper" - "mime" ) var ( @@ -97,6 +98,8 @@ func init() { serverCmd.RunE = server mime.AddExtensionType(".json", "application/json; charset=utf8") + mime.AddExtensionType(".css", "text/css; charset=utf8") + } func server(cmd *cobra.Command, args []string) error {