It's common to have sites that require more memory in WordPress or even some important variables like these that I use on many sites.
define( 'WP_AUTO_UPDATE_CORE', 'minor' );
define( 'WP_MEMORY_LIMIT', '128M' );
define( 'WP_MAX_MEMORY_LIMIT', '128M' );
define( 'CONCATENATE_SCRIPTS', false );
define( 'DISALLOW_FILE_EDIT', true );
Having a way to automate the creation of websites with these variables would be very good for everyday use.
Above is my example where it is automatically configured on all servers and sites that I deploy, I miss this customization.