mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 13:07:59 +01:00
19 lines
574 B
PHP
19 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' => [],
|
|
];
|