Skip to content
This repository was archived by the owner on Aug 21, 2026. It is now read-only.

Commit 30d7a3c

Browse files
committed
fix issue
1 parent a1f9c22 commit 30d7a3c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/View/Helper/ViteUrl.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
use function file_get_contents;
2222
use function is_file;
2323
use function json_decode;
24-
use function mb_ltrim;
24+
use function ltrim;
2525
use function sprintf;
2626

2727
use const JSON_THROW_ON_ERROR;
@@ -75,7 +75,7 @@ public function file(string $name): string
7575
}
7676

7777
if ($this->viteHost) {
78-
return $this->viteHost . '/' . mb_ltrim($name, '/');
78+
return $this->viteHost . '/' . ltrim($name, '/');
7979
}
8080

8181
$view = $this->getView();

0 commit comments

Comments
 (0)