boot-http
boot-http copied to clipboard
Serve from fileset
I thought, maybe mistakenly, that I could serve from a fileset with a simple:
(comp (serve)
(watch)
(cljs-repl)
(reload)
(version-file)
(cljs :optimizations :none
:source-map true
:compiler-options {:source-map-timestamp true}))
And this indeed works...unless, I have a project where it does not work, and I have to do:
(comp (serve :dir "target")
...
(target)
The error it returns is the classic: Problem accessing /. Reason: Not Found.
What is the mistake here?
The testing project is here: https://github.com/arichiardi/edge
having similar issue. It looks like when you put target at the bottom serve doesnt start