It would be great to have options to enable Debug mode when creating a new website (option to enable it). Right now, new website wp-config.php has no WP_DEBUG set, and for the debug mode it would be useful to have this added when new site is created:
define(‘WP_DEBUG’, true);
define(‘WP_DEBUG_DISPLAY’, false);
define(‘WP_DEBUG_LOG’, true);
define(‘SAVEQUERIES’, true);
define(‘SCRIPT_DEBUG’, true);
Maybe even have the option in Local Sites settings for each site to enable/disable debug mode without making direct changes to wp-config.php. It is annoying to have to modify each new website every time to add these settings, when Local can control it much easier.