Sha256: 60eca890b3bd0780bdb73e646ef739a701074f3e1c3d12fb45a9697c779ff9d9

Contents?: true

Size: 297 Bytes

Versions: 7

Compression:

Stored size: 297 Bytes

Contents

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

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
middleman-more-3.0.0.beta.1 fixtures/passthrough-app/config.rb
middleman-more-3.0.0.alpha.9 fixtures/passthrough-app/config.rb
middleman-more-3.0.0.alpha.8 fixtures/passthrough-app/config.rb
middleman-more-3.0.0.alpha.7 fixtures/passthrough-app/config.rb
middleman-3.0.0.alpha.6 fixtures/passthrough-app/config.rb
middleman-3.0.0.alpha.5 fixtures/passthrough-app/config.rb
middleman-3.0.0.alpha.4 fixtures/passthrough-app/config.rb