coolcat
12/22/2019, 8:24 PMfun main() {}
that does a simple print, and an index.html
with <script src="project.js"></script>
. I run the jsBrowserRun
gradle task, and it works, I see the string printed in page console OK.
But I also see
[WDS] Live Reloading enabled.
So I tried changing the printed string, and I see:
[WDS] App updated. Recompiling...
[WDS] Nothing changed.
Quitting and restarting the server makes the amended string appear.
Any hints as to what I can do to make live reloading work correctlydiesieben07
12/22/2019, 9:55 PMgradle jsBrowserRun --continuous
to get live-reloading.Robert Jaros
12/22/2019, 9:55 PM./gradlew -t run
fkrauthan
12/23/2019, 6:58 AM