Peter
04/21/2025, 4:16 PMwasmJsBrowserDevelopmentRun -t
? I see the page blink, so I guess it reloads, but changes are not applied for some reason.zt
04/21/2025, 4:55 PMAugust
04/21/2025, 5:36 PMcomposeHotReload = { id = "org.jetbrains.compose.hot-reload", version = "1.0.0-alpha05" }
and use it in gradle.build.kts
, next to your compose:
plugins {
alias(libs.plugins.compose.compiler)
alias(libs.plugins.composeHotReload)
and:
composeCompiler {
featureFlags.add(ComposeFeatureFlag.OptimizeNonSkippingGroups)
}
Peter
04/21/2025, 6:12 PMferdialif02
04/22/2025, 8:34 AMLucas Villa Verde
07/05/2025, 10:32 PM./gradlew wasmJsBrowserDevelopmentRun --watch-fs -t
You can always find more parameters by trying ./gradlew wasmJsBrowserDevelopmentRun --help
After changing your files, try CMD/Control + S
, this should trigger the assets reload + give a signal that a file had changed which will recompile the code.