为什么Django Compressor不使用缓存文件? 在我的环境中,每次加载页面时,都会重新生成新的缓存文件。 即使sass文件没有改变。
我的conf:
STATICFILES_FINDERS = (
'django.contrib.staticfiles.finders.FileSystemFinder',
'django.contrib.staticfiles.finders.AppDirectoriesFinder',
'compressor.finders.CompressorFinder',
)
# COMPRESS_ENABLED = False
COMPRESS_ROOT = os.path.realpath(os.path.join(ROOT_DIR, 'static'))
COMPRESS_OFFLINE = True
COMPRESS_PRECOMPILERS = (
('text/scss', 'sass --scss --compass {infile} {outfile}'),
)
COMPRESS_CSS_FILTERS = [
'compressor.filters.css_default.CssAbsoluteFilter',
'compressor.filters.cssmin.CSSMinFilter',
]