But, my REPL and browser were on different machines, I started the REPL by:
$ clj -M --main cljs.main --repl-opts "{:launch-browser false :port 8091 :host \"100.64.0.32\"}" --compile cljs01.core --repl
Waiting for browser to connect to http://100.64.0.32:8091 ...
ClojureScript 1.11.54
cljs.user=>
And on the other machine, I opened http://100.64.0.32:8091 with my browser, I could see the webpage, but there was a request directing to http://localhost:9000/repl?xpc=%7B..., I think this URL may be the default URL listened by the server side? Why didn’t the --repl-opts change it?
I’d try refreshing the browser page with removing all cache (in Chrome you can do it by opening the DevTools and then holding the Refresh button in the main browser panel, then selecting the Empty Cache and Hard Reload option).
Ah, wait - I actually can reproduce it but only if I also provide the --compile option. Starting a plain REPL works just fine and uses the specified host/post.
I think I figured it out. This is what I’ve reported on Slack in the #cljs-dev channel:
What I assume is going on is that without the --compile option, the third cond branch in cljs.repl.browser/send-static gets executed, the one with the ;; "/main.js" doesn't exist, provide our own comment, and it sets a custom CLOSURE_UNCOMPILED_DEFINES .
But with the --compile option, the first branch gets executed, and it doesn’t use :host /:port by itself. Perhaps, those parameters also don’t get compiled into main.js , which results in the issue.
As a workaround, you can add these arguments to the CLI, in addition to --repl-opts: