mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-03 13:34:30 +00:00
85b00d19b8
behaviour with Turbolinks enabled, optimizing Rabl for production
7 lines
213 B
Ruby
7 lines
213 B
Ruby
Rabl.configure do |config|
|
|
config.cache_all_output = true
|
|
config.cache_sources = !!Rails.env.production?
|
|
config.include_json_root = false
|
|
config.view_paths = [Rails.root.join('app/views')]
|
|
end
|