From 698019a5525a531ac1896c8205d8b7e63aba8e25 Mon Sep 17 00:00:00 2001 From: Kato Kazuyoshi Date: Wed, 14 Oct 2015 23:27:57 -0700 Subject: [PATCH] Disable LiveReload when Hugo is not running as a server This change fixes #1410. --- hugolib/site.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) } -- 2.30.2