mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-09 20:52:56 +01:00
21 lines
523 B
PHP
21 lines
523 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Laravel CORS
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| allowedOrigins, allowedHeaders and allowedMethods can be set to array('*')
|
|
| to accept any value.
|
|
|
|
|
*/
|
|
'supports_credentials' => false,
|
|
'allowed_origins' => ['*'],
|
|
'allowed_headers' => ['*'],
|
|
'allowed_methods' => ['*'],
|
|
'exposed_headers' => [],
|
|
'max_age' => 0,
|
|
];
|
|
|