commands: Sett mime type for CSS in Hugo server
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 27 Apr 2016 19:39:57 +0000 (21:39 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 27 Apr 2016 19:40:35 +0000 (21:40 +0200)
Fixes #2104

commands/server.go

index 345d2dec6da445c3106ca7d522d52afd885ee7e4..3564890f45be8f7332a5661955d53c63cfdb51e0 100644 (file)
@@ -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 {