Reputation: 557
Django compressor renames my beautiful file names in ugly hashes in dev mode, I don't want to compress it, only process scss to css. How to config a django compressor to not rename sass files after processing them, while project runs with DEBUG = True?
Upvotes: 2
Views: 304
Reputation: 21567
Disable it in dev mode. In production you shouldn't need to care.
(It might be prudent to test dev with compression switched on before you deploy, however.)
Upvotes: 2