From acb7e9751bf3659adcc8cd598a32331e176515c1 Mon Sep 17 00:00:00 2001 From: Luis Ramos Date: Sat, 2 May 2020 10:42:49 +0100 Subject: [PATCH] Move debug assets flag to another env var so we go back to having both profile and debug assets disabled by default --- config/environments/development.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/environments/development.rb b/config/environments/development.rb index b0e6ceafd1..88714f3f7f 100644 --- a/config/environments/development.rb +++ b/config/environments/development.rb @@ -50,7 +50,7 @@ Openfoodnetwork::Application.configure do # You can remove them by simply running: # # $ bundle exec rake assets:clean - config.assets.debug = !ENV["PROFILE"] + config.assets.debug = !!ENV["DEBUG_ASSETS"] # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.