Force core to use .dev JavaScript files

I use a combination of constants on my local install.

define('CONCATENATE_SCRIPTS', false);
define('COMPRESS_SCRIPTS', false); // <--- this is likely the one you're after
define('COMPRESS_CSS', false);
define('SCRIPT_DEBUG', true);

I’d imagine the second constant listed above is the one you’re after.

Leave a Comment