I recently upgraded an old rails app from version 4 to 6, and have noticed that my json views (view jbuilder) are now escaping any HTML entity. For example, amersands are now appearing as \u0026. Previously, I was able to avoid this by setting config.active_support.escape_html_entities_in_json = false in my application.rb. This doesn't seem to do anything anymore...what's the rails 6 way to configure this?