views:

169

answers:

1

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

A: 

In your config.rb file:

output_style = :compressed

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

Rob Wilkerson
Thanks, somehow missed that page in the wiki
Mark Robinson