I am new to clojure/clojurescript web development.
- Use
lein ring server
and the modifications(for example routes) will be automatically reloaded to the server(hot-deploy). - Use
lein figwheel
, and it will spy on the changes of cljs source files and updated to the page accordingly.
Now I started figwheel
and modified the back-end code(for example the routes). After I reload the page, the modified contents was not updated.
So Is there a way to integrate figwheel with the ring server so that the back-end change can be updated automatically?