mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
20 lines
574 B
PHP
20 lines
574 B
PHP
|
<?php
|
||
|
return [
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Laravel CORS
|
||
|
|--------------------------------------------------------------------------
|
||
|
|
|
||
|
| allowedOrigins, allowedHeaders and allowedMethods can be set to array('*')
|
||
|
| to accept any value.
|
||
|
|
|
||
|
*/
|
||
|
'supportsCredentials' => true,
|
||
|
'allowedOrigins' => ['localhost:3000', 'pony.fm', 'stage.pony.fm'],
|
||
|
'allowedHeaders' => ['*'],
|
||
|
'allowedMethods' => ['*'],
|
||
|
'exposedHeaders' => [],
|
||
|
'maxAge' => 0,
|
||
|
'hosts' => [],
|
||
|
];
|