Skip to content

Commit

Permalink
Merge pull request #196 from thegetty/fix/fast-render
Browse files Browse the repository at this point in the history
Fix/ Slow load/refresh time on quire preview
  • Loading branch information
hbalenda authored Oct 25, 2021
2 parents ceec320 + 04df18c commit 728d6e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ Project versions conform to [Semantic Versioning](https://semver.org/)
* `Fixed`: for any bug fixes
- `Removed`: for deprecated features removed in this release

## [Unreleased]
- Adds `disableFastRender` option to `quire preview` command

## [0.20.1]

### Fixed
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/lib/project.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,8 @@ class Project extends EventEmitter {
this.hugo = this.spawnHugo(
"server",
`--config=config.yml,${path.join("config", "environments", "dev.yml")}`,
"--watch"
"--watch",
"--disableFastRender"
);
spinner.info("Navigate to http://localhost:1313 to see your changes.");
spinner.info('Press Control+C or type "quire stop" to stop the preview.');
Expand Down

0 comments on commit 728d6e2

Please sign in to comment.