I took a look at compose web today but I’m not qui...
# compose-web
c
I took a look at compose web today but I’m not quite sure how the workflow is supposed to work. I took a look at the tutorials, which tell me to run my code using the gradle task jsBrowserRun. That works, but is kinda slow. Do I have to rebuild everything from scratch for every small change I do? Is there some kind of hot reload or preview functionality?
👀 2
o
Not a hot reload, but
./gradlew jsRun --continuous
- could help a bit. It runs with continuous compilation mode.
🔥 1
b
Also keeps the webpack server hot
l
About 5s for my changes with this method, @Christian Gaisl
n
5s is typical I guess. It is not the fastest thing on Earth 🙂 😐