Skip to content

Commit

Permalink
Allow "fast render mode" even if --disableLiveReload is set
Browse files Browse the repository at this point in the history
Fixes #10561
  • Loading branch information
bep committed Dec 21, 2022
1 parent 41a080b commit d20d265
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/commandeer.go
Expand Up @@ -383,7 +383,7 @@ func (c *commandeer) loadConfig() error {

// Set some commonly used flags
c.doLiveReload = c.running && !c.Cfg.GetBool("disableLiveReload")
c.fastRenderMode = c.doLiveReload && !c.Cfg.GetBool("disableFastRender")
c.fastRenderMode = c.running && !c.Cfg.GetBool("disableFastRender")
c.showErrorInBrowser = c.doLiveReload && !c.Cfg.GetBool("disableBrowserError")

// This is potentially double work, but we need to do this one more time now
Expand Down

0 comments on commit d20d265

Please sign in to comment.