Skip to content

Commit

Permalink
Bug 1305468 - Don't concatenate assets when PLACK_ENV ne development
Browse files Browse the repository at this point in the history
r=dylan
  • Loading branch information
neon98 authored and dylanwh committed Oct 3, 2016
1 parent 860b077 commit 63f79c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bugzilla/Constants.pm
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ use constant CAN_HAS_FEATURE => eval {
# When true CSS and JavaScript assets will be concatanted and minified at
# run-time, to reduce the number of requests required to render a page.
# Setting this to a false value can help debugging.
use constant CONCATENATE_ASSETS => 1;
use constant CONCATENATE_ASSETS => $ENV{PLACK_ENV} ? $ENV{PLACK_ENV} ne "development" : 1;

# These are unique values that are unlikely to match a string or a number,
# to be used in criteria for match() functions and other things. They start
Expand Down

0 comments on commit 63f79c6

Please sign in to comment.