diff --git a/app.php b/app.php index eca166c..fb8f1c6 100644 --- a/app.php +++ b/app.php @@ -22,7 +22,7 @@ directories: [ 'root' => __DIR__, 'modules' => __DIR__ . '/app/modules', - 'public' => __DIR__ . '/frontend/.output/public', + 'public' => __DIR__ . '/frontend/assets', ], exceptionHandler: Handler::class, )->run(); diff --git a/tests/TestCase.php b/tests/TestCase.php index 01dfd7c..2a4254b 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -69,7 +69,7 @@ public function defineDirectories(string $root): array return [ 'root' => $root, 'modules' => $root . '/app/modules', - 'public' => $root . '/frontend/.output/public', + 'public' => $root . '/frontend/assets', ]; }