Dequeue Block Library CSS on Frontend
Removes the Gutenberg block library stylesheet on the frontend for themes that do not use core block styles.
PHPby SnipCraft
php
<?php
add_action( 'wp_enqueue_scripts', function () {
wp_dequeue_style( 'wp-block-library' );
wp_dequeue_style( 'wp-block-library-theme' );
wp_dequeue_style( 'global-styles' );
wp_dequeue_style( 'classic-theme-styles' );
}, 100 );#blocks#css#gutenberg#performance