We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dc59ff commit 809b28fCopy full SHA for 809b28f
bootstrap/app.php
@@ -8,7 +8,11 @@
8
9
return Application::configure(basePath: dirname(__DIR__))
10
->withRouting(
11
- web: __DIR__.'/../routes/web.php',
+ web: [
12
+ __DIR__.'/../routes/web.php',
13
+ __DIR__.'/../routes/settings.php',
14
+ __DIR__.'/../routes/auth.php',
15
+ ],
16
commands: __DIR__.'/../routes/console.php',
17
health: '/up',
18
)
routes/web.php
@@ -12,6 +12,3 @@
return Inertia::render('dashboard');
})->name('dashboard');
});
-
-require __DIR__.'/settings.php';
-require __DIR__.'/auth.php';
0 commit comments