27 lines
522 B
PHP
27 lines
522 B
PHP
<?php
|
|
|
|
return [
|
|
'paths' => ['api/*'],
|
|
|
|
'allowed_methods' => ['*'],
|
|
|
|
'allowed_origins' => [
|
|
'https://thats-me.app',
|
|
'https://www.thats-me.app',
|
|
'https://app.thats-me.app',
|
|
'https://app.thats-me.test',
|
|
'http://app.thats-me.test:9000',
|
|
'http://localhost:9000',
|
|
'http://127.0.0.1:9000',
|
|
],
|
|
|
|
'allowed_origins_patterns' => [],
|
|
|
|
'allowed_headers' => ['*'],
|
|
|
|
'exposed_headers' => [],
|
|
|
|
'max_age' => 0,
|
|
|
|
'supports_credentials' => false,
|
|
];
|