Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I configure compass to output smaller or compressed CSS files? I tried compass -s compressed but that didn't work.

share|improve this question

3 Answers

up vote 17 down vote accepted

In your config.rb file:

output_style = :compressed

More at http://wiki.github.com/chriseppstein/compass/configuration-reference.

share|improve this answer
Thanks, somehow missed that page in the wiki – Mark Robinson Feb 26 '10 at 12:21
thanks, but the link doesn't work anymore – krike Aug 24 '11 at 7:56
The link works, it just points you to a different url – Rob Wilkerson Aug 24 '11 at 11:36

i use the following terminal command

compass compile -e production --force

reference: http://compass-style.org/help/tutorials/production-css/

share|improve this answer

Did you try with the full name of the argument in the command line ?

compass watch --output-style=compressed ...
share|improve this answer
1  
that should read compass watch --output-style=compressed – John Smith Apr 5 at 8:58
1  
why does my comment also get downvoted, when the answer is downvoted ???? – John Smith Apr 10 at 14:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.