I am developing an application with the Play Framework. Whenever I make any changes to the JavaScript files, Play starts compiling. I was hoping I would prevent this by moving them to the public / javascripts folder, but the behavior would be the same. The reason I want to do this is to speed up the development process. The compilation time is long, and it slows me down a lot, because I often check the results of my work in the browser.
Is there any way to prevent compilation of the game after modifying js files?
source
share