1
0
Fork 0
mirror of https://github.com/middleman/middleman.git synced 2022-11-09 12:20:27 -05:00
middleman--middleman/lib/middleman/features/minify_css.rb

10 lines
No EOL
228 B
Ruby

module Middleman::Features::MinifyCss
class << self
def registered(app)
app.after_compass_init do
::Compass.configuration.output_style = :compressed
end
end
alias :included :registered
end
end