Skip to content

Commit

Permalink
disabling CSS_COMPRESSOR
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbe committed Jul 22, 2016
1 parent 9fe75d4 commit 0b7ad01
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions peterbecom/settings/base.py
Expand Up @@ -248,8 +248,9 @@ def JINJA_CONFIG():
PIPELINE_JS_COMPRESSOR = 'pipeline.compressors.uglifyjs.UglifyJSCompressor'
PIPELINE_UGLIFYJS_BINARY = path('node_modules/.bin/uglifyjs')
PIPELINE_UGLIFYJS_ARGUMENTS = '--mangle'
PIPELINE_CSS_COMPRESSOR = 'pipeline.compressors.cssmin.CSSMinCompressor'
PIPELINE_CSSMIN_BINARY = path('node_modules/.bin/cssmin')
# PIPELINE_CSS_COMPRESSOR = 'pipeline.compressors.cssmin.CSSMinCompressor'
# PIPELINE_CSSMIN_BINARY = path('node_modules/.bin/cssmin')
CSS_COMPRESSOR = 'pipeline.compressors.NoopCompressor'

# Don't wrap javascript code in... `(...code...)();`
# because possibly much code has been built with the assumption that things
Expand Down

0 comments on commit 0b7ad01

Please sign in to comment.