Skip to content

Commit

Permalink
Merge pull request #59 from jozefrebjak/develop
Browse files Browse the repository at this point in the history
fix: assets config should not be called via class
  • Loading branch information
MGatner authored Sep 28, 2023
2 parents 9d88343 + b5075f1 commit b0f6177
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Asset.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ final class Asset
public static function config(): AssetsConfig
{
if (self::$config === null) {
self::$config = config(AssetsConfig::class);
self::$config = config('Assets');

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

0 comments on commit b0f6177

Please sign in to comment.