Is there a way to have scittle live reload? I tried using live.js but that won't work since they don't explicitly handle cljs or application/x-scittle
I modified live.js to add a case to handle the reload of a scittle file. live.js uses a content-type to determine what to reload. And my server was simply serving static returning the .cljs files as text/plain. So I added a switch case to handle that and it works fine
Nice! Do you have an example?