Hi, I started using JetPack Compose for Web and I ...
# compose-web
t
Hi, I started using JetPack Compose for Web and I have very good feelings from it. My question is: does it somehow support hot reload (when app executed via
./gradlew jsBrowserRun
) ? I see in web console
client?0774:52 [WDS] Live Reloading enabled.
but I don't think JetPack is supporting it at the moment.
o
Hi Tomáš*!* you're right, it's not supported yet. It's a valuable feature we'll be working on. Although can't make any promises regarding "when" at the moment 🙂
s
You can run
jsBrowserRun
with
--continuous
flag. This will enable live reload whenever you save the project. It recompiles the code each time, but is more handy to work with then manual run task execution.
🙏 3
t
@Sam Wow, thanks. That's awesome. It saves me a lot of time.