Reputation: 13
Am learning Play Framework, and i have write a small app in scala. and added some .less file which are not compiled.
the app is from the book's app sample github.com/andypetrella/play2-book-chapters/tree/master/chap3
So does Play framework in Scala support less and how to go about adding them(.less) in application? or is it the same as for java?
Upvotes: 1
Views: 151
Reputation: 1044
The .less files need to be in the app/assets/stylesheets folder. The LESS will be automatically compiled, but only when they are in that folder.
Upvotes: 2