We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a80c7d1 commit 5ba4520Copy full SHA for 5ba4520
app.php
@@ -22,7 +22,7 @@
22
directories: [
23
'root' => __DIR__,
24
'modules' => __DIR__ . '/app/modules',
25
- 'public' => __DIR__ . '/frontend/.output/public',
+ 'public' => __DIR__ . '/frontend/assets',
26
],
27
exceptionHandler: Handler::class,
28
)->run();
tests/TestCase.php
@@ -69,7 +69,7 @@ public function defineDirectories(string $root): array
69
return [
70
'root' => $root,
71
'modules' => $root . '/app/modules',
72
- 'public' => $root . '/frontend/.output/public',
+ 'public' => $root . '/frontend/assets',
73
];
74
}
75
0 commit comments