Skip to content

Commit

Permalink
fix: patch up manifest path
Browse files Browse the repository at this point in the history
  • Loading branch information
mychidarko committed Aug 25, 2024
1 parent af50afd commit bd7d5ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Vite.php
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ protected static function manifest($buildDirectory)
*/
protected static function manifestPath($buildDirectory)
{
return rtrim(static::$paths['build'], '/') . '/' . ltrim($buildDirectory, '/') . '/' . ltrim(static::$manifestFilename, '/');
return trim($buildDirectory, '/') . '/' . ltrim(static::$manifestFilename, '/');
}

/**
Expand Down

0 comments on commit bd7d5ae

Please sign in to comment.