[Answered ]-Django-compressor not working on less files in production

0👍

This turned out to be an issue with my less path. The lessc binary that was being run was a different version than the one that needed to be run.

2👍

Try ./manage.py compress --force and that will force compress your assets and show which line, if any, is tripping it up. My project had small @import reference problems and that broke it in production.

👤a_dreb

Leave a comment