Files
PeePal/Backend/peepal_backend/bootstrap/app.php
Sándor Máté Magony cc7c8bc8dd Kész mosdó hozzáadás
2025-04-08 11:17:41 +02:00

28 lines
853 B
PHP

<?php
use Illuminate\Foundation\Application;
use Illuminate\Foundation\Configuration\Exceptions;
use Illuminate\Foundation\Configuration\Middleware;
return Application::configure(basePath: dirname(__DIR__))
->withRouting(
web: __DIR__.'/../routes/web.php',
api: __DIR__.'/../routes/api.php',
commands: __DIR__.'/../routes/console.php',
health: '/up',
)
->withMiddleware(function (Middleware $middleware) {
// Add CORS middleware for API routes
$middleware->api([
\Illuminate\Http\Middleware\HandleCors::class,
]);
// Or if you want to apply CORS to all routes
$middleware->append([
\Illuminate\Http\Middleware\HandleCors::class,
]);
})
->withExceptions(function (Exceptions $exceptions) {
//
})->create();