commit 08-2025
This commit is contained in:
parent
9ae662f63e
commit
480fdc65ed
404 changed files with 65310 additions and 2600431 deletions
26
config/cors.php
Normal file
26
config/cors.php
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'paths' => ['api/*', '*'],
|
||||
|
||||
'allowed_methods' => ['*'],
|
||||
|
||||
'allowed_origins' => [
|
||||
'https://mivita.care',
|
||||
'https://*.mivita.care',
|
||||
],
|
||||
|
||||
'allowed_origins_patterns' => [
|
||||
'/^https:\/\/.*\.mivita\.care$/'
|
||||
],
|
||||
|
||||
'allowed_headers' => ['*'],
|
||||
|
||||
'exposed_headers' => [],
|
||||
|
||||
'max_age' => 0,
|
||||
|
||||
'supports_credentials' => true,
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue