From baf11f30d51ed661f3d6a60b5ff739fe1ae5f6dd Mon Sep 17 00:00:00 2001 From: Babobski Date: Mon, 1 Jan 2024 17:09:36 +0100 Subject: [PATCH] [Icons] Make minified file default included. --- functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions.php b/functions.php index 148008d..304177c 100644 --- a/functions.php +++ b/functions.php @@ -104,7 +104,7 @@ function bootstrap_script_init() { wp_enqueue_script( 'site', get_template_directory_uri() . '/js/app.js', [ 'jquery', 'bootstrap' ], $theme->get( 'Version' ), true ); wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css', [], BOOTSTRAP_VERSION, 'all' ); - wp_enqueue_style( 'bootstrap_icons', get_template_directory_uri() . '/css/bootstrap-icons.css', [], BOOTSTRAP_ICON_VERSION, 'all' ); + wp_enqueue_style( 'bootstrap_icons', get_template_directory_uri() . '/css/bootstrap-icons.min.css', [], BOOTSTRAP_ICON_VERSION, 'all' ); wp_enqueue_style( 'screen', get_template_directory_uri() . '/style.css', [], $theme->get( 'Version' ), 'screen' ); } }