diff --git a/conf/default.conf.php b/conf/default.conf.php --- a/conf/default.conf.php +++ b/conf/default.conf.php @@ -980,7 +980,7 @@ // Minify static resources by removing whitespace and comments. You should // enable this in production, but disable it in development. - 'celerity.minify' => false, + 'celerity.minify' => true, // You can respond to various application events by installing listeners, // which will receive callbacks when interesting things occur. Specify a list diff --git a/conf/development.conf.php b/conf/development.conf.php --- a/conf/development.conf.php +++ b/conf/development.conf.php @@ -4,5 +4,6 @@ 'phabricator.developer-mode' => true, 'darkconsole.enabled' => true, + 'celerity.minify' => false, ) + phabricator_read_config_file('default'); diff --git a/src/applications/config/option/PhabricatorDeveloperConfigOptions.php b/src/applications/config/option/PhabricatorDeveloperConfigOptions.php --- a/src/applications/config/option/PhabricatorDeveloperConfigOptions.php +++ b/src/applications/config/option/PhabricatorDeveloperConfigOptions.php @@ -97,7 +97,7 @@ "This option enables verbose error reporting (stack traces, ". "error callouts) and forces disk reads of static assets on ". "every reload.")), - $this->newOption('celerity.minify', 'bool', false) + $this->newOption('celerity.minify', 'bool', true) ->setBoolOptions( array( pht('Minify static resources.'),