Skip to content

Commit f4b1168

Browse files
committed
Vendor assets loading before user routes
1 parent dfb0bef commit f4b1168

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Libraries/Assets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ protected function gather(): array
170170
foreach ($this->handlers as $class)
171171
{
172172
$handler = new $class($this->config);
173-
$this->paths = array_merge($this->paths, $handler->gather($this->route));
173+
$this->paths = array_merge($handler->gather($this->route), $this->paths);
174174
}
175175

176176
$this->paths = array_unique($this->paths);

0 commit comments

Comments
 (0)