Created
March 26, 2025 12:04
-
-
Save caiovncius/6ee7748973cddca59ef3149cdf729a18 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Illuminate\Foundation\Application; | |
use Illuminate\Foundation\Configuration\Exceptions; | |
use Illuminate\Foundation\Configuration\Middleware; | |
use App\Http\Middleware\HandleInertiaRequests; | |
return Application::configure(basePath: dirname(__DIR__)) | |
->withRouting( | |
web: __DIR__.'/../routes/web.php', | |
commands: __DIR__.'/../routes/console.php', | |
health: '/up', | |
) | |
->withMiddleware(function (Middleware $middleware) { | |
// | |
}) | |
->withMiddleware(function (Middleware $middleware) { | |
$middleware->web(append: [ | |
HandleInertiaRequests::class, | |
]); | |
}) | |
->withExceptions(function (Exceptions $exceptions) { | |
// | |
})->create(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment