From: Kato Kazuyoshi Date: Thu, 15 Oct 2015 06:27:57 +0000 (-0700) Subject: Disable LiveReload when Hugo is not running as a server X-Git-Tag: v0.15~109 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=698019a5;p=brevno-suite%2Fhugo Disable LiveReload when Hugo is not running as a server This change fixes #1410. --- diff --git a/hugolib/site.go b/hugolib/site.go index 4cf31e4a..743cc082 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1449,7 +1449,7 @@ func (s *Site) renderAndWritePage(name string, dest string, d interface{}, layou transformLinks = append(transformLinks, transform.AbsURL) } - if viper.GetBool("watch") && !viper.GetBool("DisableLiveReload") { + if s.Running() && viper.GetBool("watch") && !viper.GetBool("DisableLiveReload") { transformLinks = append(transformLinks, transform.LiveReloadInject) }