Dilomarkt---Digitaler-Lokal.../Dilomarkt/dilomarkt-api/config/cors.php
2026-06-30 11:54:45 +02:00

11 lines
385 B
PHP

<?php
return [
'paths' => ['api/*'],
'allowed_methods' => ['*'],
'allowed_origins' => ['http://localhost:5173', 'http://localhost:5174'],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => false,
];