Fork me on GitHub
#figwheel-main
<
2018-07-21
>
Garrett Hopper16:07:25

Is there a config setting to change the public/index.html hosting? For some reason https://github.com/keechma/router has a public/index.html which is preventing me from using the builtin figwheel-main app. Being able to have two separate index.html files in my own resources would be useful too, since I have two figwheel builds.

bhauman16:07:21

@ghopper you would have to add your own :ring-handler and handle it yourself

bhauman16:07:00

of course you could simply use a different landing page and change the :open-url

bhauman16:07:47

and that's an insane bug on keechma's part

Garrett Hopper16:07:15

@bhauman Oh, that's a good idea. Yeah... I've already reached out on #keechma about it.

Garrett Hopper16:07:41

Thanks for creating that issue, @bhauman. 🙂

zakora20:07:19

Is there an option to start clojure -m fighweel.main without it opening a new tab in my browser?

defn23:07:22

@zakora_clojurians I use this figwheel-main.edn to stop launching a browser. I've also included the config to not run node if you're targeting the node environment

> cat figwheel-main.edn
{:open-url false
 :launch-node false}