Sass "on-the-fly" compilation when using Spring Boot

Hi all,
Is it possible to have sass compilation on the fly when you run in debug mode using Spring Boot?
Right now I need to compile it manually every time
Is this working for anyone yet?
Thanks a lot in advance for any light on this
Fran

I haven’t tried, but I’d really suggest to avoid doing on the fly sass compilation
in the server
alltogether. You are not compiling your java classes in the server either :wink: In at least NetBeans and IntelliJ you can hook the original ruby based compiler to do the compilation right after you change the file, or do the same from command line (
sass watch
or something). I haven’t used this with Spring Boot apps, but I’d guess it should work just fine.

cheers,
matti