Skip to content

Commit

Permalink
Fixed path to frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed Feb 21, 2025
1 parent c1ed0ab commit 095567a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
directories: [
'root' => __DIR__,
'modules' => __DIR__ . '/app/modules',
'public' => __DIR__ . '/frontend/assets',
'public' => __DIR__ . '/frontend',
],
exceptionHandler: Handler::class,
)->run();
Expand All @@ -31,5 +31,5 @@
exit(255);
}

$code = (int)$app->serve();
$code = (int) $app->serve();
exit($code);

0 comments on commit 095567a

Please sign in to comment.