middleman/fixtures/passthrough-app/config.rb

17 lines
290 B
Ruby

module PassThrough
def self.compile(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