mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
parent
bfebd8c02c
commit
c7d5f9f067
2 changed files with 6 additions and 4 deletions
|
@ -127,6 +127,12 @@ func initializeConfig(mustHaveConfigFile, failOnInitErr, running bool,
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if h := c.hugoTry(); h != nil {
|
||||||
|
for _, s := range h.Sites {
|
||||||
|
s.RegisterMediaTypes()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return c, nil
|
return c, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -272,10 +272,6 @@ func (sc *serverCmd) server(cmd *cobra.Command, args []string) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, s := range c.hugo().Sites {
|
|
||||||
s.RegisterMediaTypes()
|
|
||||||
}
|
|
||||||
|
|
||||||
// Watch runs its own server as part of the routine
|
// Watch runs its own server as part of the routine
|
||||||
if sc.serverWatch {
|
if sc.serverWatch {
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue