I am following <https://kotlinlang.org/docs/wasm-d...
# webassembly
s
I am following https://kotlinlang.org/docs/wasm-debugging.html, debugging works great! Is it already possible to have some live reload capabilities with short feedback loop or not yet? I run the app with
wasmJsBrowserDevelopmentRun
but my updates seems not taken in account even when I rebuild.
b
Automatic build and browser refresh possible with Gradle continuous build
-t
or
--continuous
, but it will not preserve your state.
For hot reload follow KT-56196
👍 1