Skip to content

Commit 15692ca

Browse files
committed
patch: Disable Figwheel open-url by default
This seems to cause some confusion if you host your own server.
1 parent b09d165 commit 15692ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/clojure/dev/clojurephant/tooling/figwheel_repl.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
[figwheel.repl :as repl]))
66

77
(defn repl-env [id]
8-
(let [opts (cljs/build-opts id)
8+
(let [opts (assoc (cljs/build-opts id)
9+
:open-url false)
910
env (repl/repl-env* opts)]
1011
(cljs/repl-env! id env)))
1112

0 commit comments

Comments
 (0)