I have a question about relative paths for '@import' statements for the play! framework's greenscript module. Specifically, I have a 'main.less' file which imports all of my other less files via this syntax:
@import "variables.less";
@import "mixins.less";
@import "stuff.less";...
In dev mode, these files all return 404s, and they are being looked for in the greenscript minimized directory ('public/gs' by default). Does anyone know how to have them imported relative to main.less? Thanks for your help!