预编译罗盘的Django压缩器总是重新生成缓存文件

时间:2015-01-22 12:22:07

标签: django caching sass django-compressor

为什么Django Compressor不使用缓存文件? 在我的环境中,每次加载页面时,都会重新生成新的缓存文件。 即使sas​​s文件没有改变。

我的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',
]

0 个答案:

没有答案