Fork me on GitHub
#lein-figwheel
<
2018-04-01
>
jrbrodie7702:04:14

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.

jsmesami10:04:33

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.