Fork me on GitHub
#lein-figwheel
<
2020-04-28
>
Mark Bailey03:04:10

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.

lsenjov06:04:52

Have you opened up a browser and the page hosting the javascript?

lsenjov06:04:28

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

lsenjov06:04:53

As such, it can't open a repl prompt till you've got the JS running @mbbailey96