我已经浏览了与我遇到的问题类似的所有相关帖子,但它们似乎都没有解决我的问题,因此我的问题。
当我运行python manage.py collectstatic
django-pipeline 生成没有内容的缩小 css 文件。有人可以告诉我如何解决这个问题。我在终端中看不到任何错误。使用 django 1.5。
这是我的 django-pipeline 特定设置:
STATICFILES_STORAGE = 'pipeline.storage.PipelineCachedStorage'
PIPELINE_ENABLED = True
PIPELINE_CSS_COMPRESSOR = 'pipeline.compressors.yuglify.YuglifyCompressor'
PIPELINE_JS_COMPRESSOR = 'pipeline.compressors.yuglify.YuglifyCompressor'
PIPELINE_YUGLIFY_BINARY = '/usr/bin/env yuglify'
PIPELINE_CSS = {
'page_style': {
'source_filenames': (
'css/header.css',
'css/content.css',
'jqm/grid.css'
),
'output_filename': 'assets/compressed/page_style.min.css',
}
}