mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-26 05:31:36 +01:00
85b00d19b8
behaviour with Turbolinks enabled, optimizing Rabl for production
6 lines
213 B
Ruby
6 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
|