fixed bladeicons-prefix missing

This commit is contained in:
Codex Agent
2025-11-20 17:28:44 +01:00
parent b6bb602af8
commit 5d25d1f261

View File

@@ -62,6 +62,12 @@ class AppServiceProvider extends ServiceProvider
$this->app->singleton(EventStorageManager::class);
$this->app->singleton(StorageHealthService::class);
$this->app->singleton(PhotoSecurityScanner::class);
$heroiconsPrefix = config('blade-heroicons.prefix');
if (! is_string($heroiconsPrefix) || $heroiconsPrefix === '') {
config()->set('blade-heroicons.prefix', 'heroicon');
}
}
/**