I have gone through all of the related posts similar to the issue I have, but none of them seem to solve my problem therefore my question.
When I run python manage.py collectstatic
django-pipeline generates minified css file which has no content. Can someone please advise how I can resolve this issue.
I don't see any errors in my terminal. Using django 1.5.
Here's my django-pipeline specific settings:
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',
}
}