diff options
author | jessib <jessib@riseup.net> | 2013-11-18 09:57:02 -0800 |
---|---|---|
committer | jessib <jessib@riseup.net> | 2013-11-18 09:57:02 -0800 |
commit | ab2e014df85b7f931a717ed49d9b9678f6f1c5a0 (patch) | |
tree | 568a7e8cb47349431553ec5667dddcaaf57d206b /config/application.rb | |
parent | 3104677b8d96cd4a118022267abc7bed818f8ddd (diff) | |
parent | 7a107e0d38271e7103d3494e06d52f3434022f22 (diff) |
Merge branch 'develop' into feature/rename_ticket_title_to_subject
Diffstat (limited to 'config/application.rb')
-rw-r--r-- | config/application.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/application.rb b/config/application.rb index 8587ffc..2c9c55a 100644 --- a/config/application.rb +++ b/config/application.rb @@ -78,12 +78,18 @@ module LeapWeb # Enable the asset pipeline config.assets.enabled = true - config.assets.initialize_on_precompile = false + config.assets.initialize_on_precompile = true # don't change this (see customization.rb) # Version of your assets, change this if you want to expire all your assets config.assets.version = '1.0' # Set to false in order to see asset requests in the log config.quiet_assets = true + + ## + ## CUSTOMIZATION + ## see initializers/customization.rb + ## + config.paths['app/views'].unshift "config/customization/views" end end |