From c8c6f5d05bd3952014d53e0f05f3b59797868943 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Sun, 6 Mar 2016 14:10:06 +0100 Subject: [PATCH] Add json mime extension type --- commands/server.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/commands/server.go b/commands/server.go index 6007d9fe..124541b9 100644 --- a/commands/server.go +++ b/commands/server.go @@ -30,6 +30,7 @@ import ( "github.com/spf13/hugo/hugofs" jww "github.com/spf13/jwalterweatherman" "github.com/spf13/viper" + "mime" ) var ( @@ -94,6 +95,8 @@ func init() { serverCmd.Flags().String("memstats", "", "log memory usage to this file") serverCmd.Flags().Int("meminterval", 100, "interval to poll memory usage (requires --memstats)") serverCmd.RunE = server + + mime.AddExtensionType(".json", "application/json; charset=utf8") } func server(cmd *cobra.Command, args []string) error { -- 2.30.2