Hi,
in less.module, you update $vars['styles'], but you should also update $vars['css] with $css. Otherwise other modules that want to add or remove files in there hook_preprocess_page will overwrite your changes.
This line should be added on line 58 in less.module: $vars['css'] = $css;
Great module by the way!
Comments
Comment #1
corey.aufang commentedGood point.
Corrected and pushing new release.