Fork me on GitHub
#shadow-cljs
<
2022-12-05
>
Joni13:12:27

With version 2.20.12 the basic http server doesn’t serve the index.html from /resources/public when given :root "resources/public" but the version 2.19.2 does. Is there some known configuration change that’s happened or is this a regression?

Joni07:12:02

Didn’t get to testing that as I had to rollback the version

Joni10:12:12

Okey yea this is an issue with the proxy-url

Joni10:12:27

If the proxy-url option is given the re-direct to index.html stops working with the latest version. But if no proxy-url option is given it works. Also it everything works as expected with the version 2.19.2

thheller17:12:12

you mean you open :<the-port> and it doesn't serve resources/public/index.html?

Joni19:12:14

Yes exactly this

thheller17:12:27

that should definitely still work

thheller17:12:36

what may have changed is that if you have your own :handler as well. since that didn't previously get called for those files, but now is

byrongibby19:12:43

Hi. How do I override the location of my local maven repository in shadow-cljs.edn? Thanks

thheller20:12:44

:maven {:local-repo "foo"}

😃 1
byrongibby05:12:14

Thanks a lot!