This commit is contained in:
Yisroel Baum 2026-05-09 23:13:17 +03:00
parent 5081729b99
commit 23ec371386
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

11
backend/config/cors.php Normal file
View file

@ -0,0 +1,11 @@
<?php
return [
'paths' => ['api/*', 'sanctum/csrf-cookie'],
'allowed_methods' => ['*'],
'allowed_origins' => ['https://tide.yisroelbaum.com'],
'allowed_origins_patterns' => [],
'allowed_headers' => ['*'],
'exposed_headers' => [],
'max_age' => 0,
'supports_credentials' => true,
];