Not Minifying Core Javascript in WordPress

I couldn’t find the answer to how to do this in WordPress.

So, debugger. Grumble.

To avoid minifying core Javascript (including such things as Gutenberg code) do this.

wp set --raw SCRIPT_DEBUG true

or stick this line in wp-config.php.

define( 'SCRIPT_DEBUG', true );

Leave a Comment