Django压缩器缩小了CSS而不是gziping

时间:2014-07-03 15:56:58

标签: html css django django-compressor

所以我使用'django-compressor'来压缩所有的css文件。它确实将所有css文件缩小并合并到一个文件'9756d9abb2c2.css'中,但是这个单个文件的大小几乎等于所有css文件的总和。 Google PageSpeed仍告诉我:

Compressing http://xxx/9756d9abb2c2.css could save 85.1KiB (87% reduction).

我不确定可能是什么问题:/

修改:以下是我的设置:

DEBUG = True
STATIC_ROOT = ''
STATIC_URL = '/stic/'
STATICFILES_DIRS = (
    'static',
)
COMPRESS_OFFLINE_CONTEXT = {
'STATIC_URL': '/stic/',
}
COMPRESS_ENABLED = True
COMPRESS_OUTPUT_DIR = 'static/CACHE'

STATICFILES_FINDERS = (
    'django.contrib.staticfiles.finders.FileSystemFinder',
    'django.contrib.staticfiles.finders.AppDirectoriesFinder',
    'compressor.finders.CompressorFinder',      # compressor (compress css and js files)
)
MIDDLEWARE_CLASSES = (
    ####...
    'django.middleware.gzip.GZipMiddleware',        #enable gzip compression for html
)

0 个答案:

没有答案