lein-figwheel

jrbrodie77 2018-04-01T02:14:14.000055Z

Has anyone seen cases where lein/figwheel doesn’t pull down dependencies? I keep getting “no such namespace cljsjs.chartjs” but I’ve checked that it’s in my project.clj and done several cleans etc. any debugging tips would be great.

jsmesami 2018-04-01T10:10:33.000066Z

Hi! I have this problem: When I run my figwheel server with lein figwheel, it picks the configuration of my Ring handler from project.clj:

(defproject foo "1.0"
:figwheel {:ring-handler dev-app/app})
But when I connect to a running nREPL and start figwheel
(use 'figwheel-sidecar.repl-api)
(start-figwheel!)
(cljs-repl)
It doesn't use the config and I can't figure how to make it use that handler.