mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-08 20:22:42 +01:00
21 lines
517 B
PHP
21 lines
517 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Laravel CORS
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| allowedOrigins, allowedHeaders and allowedMethods can be set to array('*')
|
|
| to accept any value.
|
|
|
|
|
*/
|
|
'supportsCredentials' => false,
|
|
'allowedOrigins' => ['*'],
|
|
'allowedHeaders' => ['*'],
|
|
'allowedMethods' => ['*'],
|
|
'exposedHeaders' => [],
|
|
'maxAge' => 0,
|
|
];
|
|
|