Guest User

Untitled

a guest
Jan 24th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. Rails.application.configure do
  2. # ...
  3. # For Rails 4 we need to add those settings
  4. config.serve_static_files = true
  5. config.static_cache_control = 'public, max-age=2592000'
  6. config.assets.digest = true
  7. config.assets.debug = false
  8.  
  9. if ENV['CI']
  10. config.assets.compile = false
  11. config.assets.js_compressor = :uglifier
  12. end
  13. end
Add Comment
Please, Sign In to add comment