Sha256: b4094d92d32413d9b76044a17122f307938f2c8bc5891d6ba27abd3c37165f7b
Contents?: true
Size: 407 Bytes
Versions: 7
Compression:
Stored size: 407 Bytes
Contents
module Bootstrap module Rails class Engine < ::Rails::Engine initializer 'bootstrap-sass.assets.precompile' do |app| %w(stylesheets javascripts fonts images).each do |sub| app.config.assets.paths << root.join('assets', sub).to_s end app.config.assets.precompile << %r(bootstrap/glyphicons-halflings-regular\.(?:eot|svg|ttf|woff2?)$) end end end end
Version data entries
7 entries across 7 versions & 2 rubygems