Commit 63f79c62 authored by Ekta Parmar's avatar Ekta Parmar Committed by Dylan William Hardison

Bug 1305468 - Don't concatenate assets when PLACK_ENV ne development

r=dylan
parent 860b0775
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment