hello all
I am trying to connect a repl to a web worker
Finally got it working with weasel
I'd like to use figwheel though, since the tooling is so mature. For it to work though, I need to be able to control where the client js calls out to localhost 3449. Is that controllable in figwheel?
And I can't just have figwheel insert the call out. It has to be inserted in a (when-not (in-webworker?) (repl/connect ...
correction: (when (in-webworker?) (repl/connect ...
well, either one, to control when the connect is called is the point
and after searching through the figwheel documentation and blog posts, I was not able to find a reference to a programmatic figwheel/connect
function I can use, so I figured I'd ask here.