Hi all, (hopefully quick) question: when I use boot-reload along with the boot serve task to serve static site, reload works fine (it reloads my compiled cljs files from /public/static/js/dev.out).
but if I change boot serve to serve a ring handler, and the ring handler routes /public/static/js to http://localhost:3000/js, then when boot-reload tries to load from http://localhost:3000/public/static/js, the reload no longer works
is there a way to tell boot-reload to serve from the handler route (/js) instead of the full relative path to the compiled js (/public/static/js)?
ah ha, nevermind, figured it out 😎
(reload :asset-path "/public/static")
that threw me off because :asset-path
in the *.edn.cljs
files has a different meaning