From 5ba4520c0a17db2dd9de48383c8ecdc373f8f3af Mon Sep 17 00:00:00 2001 From: Andrei Kuchuk Date: Mon, 20 Jan 2025 22:17:45 +0400 Subject: [PATCH] apply frontend structure change --- app.php | 2 +- tests/TestCase.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app.php b/app.php index eca166c2..fb8f1c60 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 01dfd7c4..2a4254bc 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', ]; }