shadow-cljs

https://github.com/thheller/shadow-cljs | https://github.com/sponsors/thheller | https://www.patreon.com/thheller
fsd 2021-02-26T15:02:50.113200Z

Hello Good Morning, I needed a little help, how do I make shadow-cljs react application support old browser such as Internet Explorer (IE)

thheller 2021-02-26T15:43:54.114300Z

that entirely depends on what is causing it not to work. maybe you need to add some polyfills. maybe :compiler-options {:output-feature-set :es3} in your build config works.

thheller 2021-02-26T15:44:36.115200Z

is it breaking in some npm library? does it break in your code? there is unfortunately no easy answer to this if the above is not enough.

fsd 2021-02-26T16:07:16.115600Z

@thheller this is what I get

thheller 2021-02-26T16:12:06.116Z

does the release build work? watch doesn't need to work and has no priority to work.

fsd 2021-02-26T16:21:20.116900Z

I only used yarn start I am new to shadow cljs How do I run that command?

thheller 2021-02-26T16:25:50.117400Z

what does yarn start do? what template did you use? normally just shadow-cljs release <your-build-id>

fsd 2021-02-26T16:35:42.118500Z

yarn postcss && shadow-cljs watch app

thheller 2021-02-26T16:36:15.118700Z

so shadow-cljs release app

fsd 2021-02-26T16:41:33.118900Z

Yes