Rnd_d
Rnd_d

Reputation: 557

Config django compressor to not rename post processed files

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

Answers (1)

Andy Baker
Andy Baker

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

Related Questions