Dequeues the global block library stylesheet on the front end for classic themes that do not need core block styles.
add_action( 'wp_enqueue_scripts', 'wpfolks_remove_block_library_css', 100 );
function wpfolks_remove_block_library_css() {
if ( ! is_admin() ) {
wp_dequeue_style( 'wp-block-library' );
}
}