Mwenyevyake
Mwenyevyake

Reputation: 13

Does Play framework 2.2.3 support LESS in Scala

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

Answers (1)

mbseid
mbseid

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

Related Questions