Skip to content

Commit b0f6177

Browse files
authored
Merge pull request #59 from jozefrebjak/develop
fix: assets config should not be called via class
2 parents 9d88343 + b5075f1 commit b0f6177

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Asset.php

+1-1
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)