created a new app
in examples
dir through ./bin/app name --cljs
and when I start clj&cljs repl in Emacs it fails with the following error: error in process sentinel: Could not start nREPL server: Error building classpath. Manifest type not detected when finding deps for juxt.edge/app.logging in coordinate #:local{:root "../edge.app.logging"}
@chokheli an upgrade of clj fixes that issue I believe because Edge is now exploiting a very recent big fix.
Thanks, I’ll check it.
yeah, upgrading clojure to 442 solved the issue, thanks!
Great! Feel free to @ me if you have further issues 🙂
I meant to say bug fix, of course 😉
big-bug fix))
new dir structure looks quite clean.
I've been waiting for the bug fix so I could clean it up
hi, I am trying to get CSRF protection running by adding csrf token into my html file. I have added <meta name="csrf-token" content="{{csrf-token}}">
into index.html in resources and I want to insert the token using Selmer. How should I generate the token using yada? Should I just use the standard ring handler for it, as described in https://github.com/ring-clojure/ring-anti-forgery?