Skip to content

Commit b5075f1

Browse files
committed
fix: assets config should not be called via class
1 parent 3193e14 commit b5075f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Asset.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ final class Asset
5151
public static function config(): AssetsConfig
5252
{
5353
if (self::$config === null) {
54-
self::$config = config(AssetsConfig::class);
54+
self::$config = config('Assets');
5555

5656
// Standardize formats
5757
self::$config->uri = rtrim(self::$config->uri, '/\\') . '/';

0 commit comments

Comments
 (0)