Hello everyone! When I run
lein figwheel
in my project dir, figwheel will not show a prompt. My app is live, but it's not connected for some reason, and as such it doesn't auto-build.Have you opened up a browser and the page hosting the javascript?
The figwheel repl links directly to the browser running the page. When you send something to be evaluated, it does it in the browser, and returns the result
As such, it can't open a repl prompt till you've got the JS running @mbbailey96