There was an error while loading. Please reload this page.
1 parent c3c10f2 commit fa53b13Copy full SHA for fa53b13
commands/hugo.go
@@ -769,7 +769,8 @@ func (c *commandeer) rebuildSites(events []fsnotify.Event) error {
769
return err
770
}
771
visited := c.visitedURLs.PeekAllSet()
772
- if !c.Cfg.GetBool("disableFastRender") {
+ doLiveReload := !buildWatch && !c.Cfg.GetBool("disableLiveReload")
773
+ if doLiveReload && !c.Cfg.GetBool("disableFastRender") {
774
// Make sure we always render the home page
775
visited["/"] = true
776
0 commit comments