IMPR: Deffer css loading

This commit is contained in:
Tony Air 2023-11-22 03:05:47 +02:00
parent b101030a43
commit efa97aaaf3
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ class DeferredRequirements implements TemplateGlobalProvider
{
$external = (mb_strpos($css, '//') === 0 || mb_strpos($css, 'http') === 0);
//if (self::getDeferred() && !self::webpackActive()) {
if ($external) {
if ((self::getDeferred() && !self::webpackActive()) || $external) {
self::$css[] = $css;
} else {
WebpackTemplateProvider::loadCSS(self::get_url($css));