cryogen-project / cryogen

A simple static site generator written in Clojure
http://cryogenweb.org/
Eclipse Public License 1.0
1.1k stars 96 forks source link

server.clj: enable auto-refresh in the fast mode #242

Closed holyjak closed 3 years ago

holyjak commented 3 years ago

Enable auto-reloading of the blog's changed page in the browser if in the fast serve mode.

It only makes sense in the fast mode because the ring refresh middleware kicks in soon after it detects any change in the output dir - likely a while before Cryogen gets to compiling the page the user is currently viewing/editing - and thus it will try to load a url that it not yet available, resulting in Not Found.

holyjak commented 3 years ago

FYI I have fixed the code and added docs update.