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?
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.)
链接地址: http://www.djcxy.com/p/68506.html下一篇: 配置django压缩器不重命名后处理文件