This commit is contained in:
2026-02-03 17:11:41 +01:00
parent 591127b5b6
commit 7f64c80b77
3 changed files with 3 additions and 6 deletions
-3
View File
@@ -14,9 +14,6 @@ return Application::configure(basePath: dirname(__DIR__))
) )
->withMiddleware(function (Middleware $middleware): void { ->withMiddleware(function (Middleware $middleware): void {
$middleware->statefulApi(); $middleware->statefulApi();
$middleware->api(prepend: [
\Illuminate\Http\Middleware\HandleCors::class,
]);
}) })
->withExceptions(function (Exceptions $exceptions): void { ->withExceptions(function (Exceptions $exceptions): void {
// //
+1 -1
View File
@@ -19,7 +19,7 @@ return [
'allowed_methods' => ['*'], 'allowed_methods' => ['*'],
'allowed_origins' => [env('FRONTEND_URL'), 'http://localhost:5173'], 'allowed_origins' => ['http://localhost:5173'],
'allowed_origins_patterns' => [], 'allowed_origins_patterns' => [],
+2 -2
View File
@@ -16,12 +16,12 @@ return [
*/ */
'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf( 'stateful' => explode(',', env('SANCTUM_STATEFUL_DOMAINS', sprintf(
'%s%s', '%s,%s',
'localhost,localhost:5173,127.0.0.1,127.0.0.1:8000,::1', 'localhost,localhost:5173,127.0.0.1,127.0.0.1:8000,::1',
Sanctum::currentApplicationUrlWithPort(), Sanctum::currentApplicationUrlWithPort(),
// Sanctum::currentRequestHost(),
))), ))),
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Sanctum Guards | Sanctum Guards