hello! can anyone please help me? I am having issu...
# javascript
d
hello! can anyone please help me? I am having issues with continous compilation. I followed this https://kotlinlang.org/docs/dev-server-continuous-compilation.html and added the
--continous
flag, but I still don’t have hot/live reloading enabled I do not have the message in the last screenshot (Waiting for changes to input ) and even more strangely - I get the project into a “locked” state with that continous flag. meaning even if I change something and re-compile and run again, it does not reflect my last changes 🤔 I would love to have this enabled, thanks!
t
I had the same issue and gave up using gradle run for development This is my solution https://kotlinlang.slack.com/archives/C0B8L3U69/p1683466471925199
PS: I'm considering to change to use
livereload
from Python since there is a long pause before the browser is reloaded because (I guess)
live-server
relies on OS file change event and file changed during build step does not send any event that time