middleman/middleman-core/fixtures/passthrough-app/config.rb
2011-12-29 15:09:51 -08:00

17 lines
297 B
Ruby

module ::PassThrough
def self.compress(data)
data
end
end
set :js_compressor, ::PassThrough
set :css_compressor, ::PassThrough
activate :minify_javascript
activate :minify_css
with_layout false do
page "/inline-css.html"
page "/inline-js.html"
page "/inline-coffeescript.html"
end