24 lines
571 B
PHP
Executable File
24 lines
571 B
PHP
Executable File
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Laravel CORS
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| allowedOrigins, allowedHeaders and allowedMethods can be set to array('*')
|
|
| to accept any value.
|
|
|
|
|
*/
|
|
|
|
'supportsCredentials' => false,
|
|
'allowedOrigins' => ['*'],
|
|
'allowedOriginsPatterns' => [],
|
|
'allowedHeaders' => ['*'],
|
|
'allowedMethods' => ['*'],
|
|
'exposedHeaders' => ['Content-Disposition'],
|
|
'maxAge' => 0,
|
|
|
|
];
|