Skip to content

Commit 28e883d

Browse files
authored
Merge pull request #270 from buggregator/hotfix/frontned-path
Fixed path to frontend
2 parents c1ed0ab + 095567a commit 28e883d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
directories: [
2323
'root' => __DIR__,
2424
'modules' => __DIR__ . '/app/modules',
25-
'public' => __DIR__ . '/frontend/assets',
25+
'public' => __DIR__ . '/frontend',
2626
],
2727
exceptionHandler: Handler::class,
2828
)->run();
@@ -31,5 +31,5 @@
3131
exit(255);
3232
}
3333

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

0 commit comments

Comments
 (0)