forked from magonysandormate/PeePal
12 lines
328 B
PHP
12 lines
328 B
PHP
<?php
|
|
|
|
return [
|
|
'paths' => ['api/*'],
|
|
'allowed_methods' => ['*'],
|
|
'allowed_origins' => ['*'], // For development; restrict to your frontend URL in production
|
|
'allowed_origins_patterns' => [],
|
|
'allowed_headers' => ['*'],
|
|
'exposed_headers' => [],
|
|
'max_age' => 0,
|
|
'supports_credentials' => false,
|
|
]; |