2017-01-03 18:44:40 +01:00
|
|
|
<?php
|
2021-02-14 03:39:15 +01:00
|
|
|
|
2017-01-03 18:44:40 +01:00
|
|
|
return [
|
2021-02-14 19:57:25 +01:00
|
|
|
|
2017-01-03 18:44:40 +01:00
|
|
|
/*
|
2021-02-14 19:57:25 +01:00
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
| Cross-Origin Resource Sharing (CORS) Configuration
|
|
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
| Here you may configure your settings for cross-origin resource sharing
|
|
|
|
| or "CORS". This determines what cross-origin operations may execute
|
|
|
|
| in web browsers. You are free to adjust these settings as needed.
|
|
|
|
|
|
|
|
|
| To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2021-02-14 20:11:18 +01:00
|
|
|
'paths' => ['api/*', 'sanctum/csrf-cookie'],
|
2021-02-14 19:57:25 +01:00
|
|
|
|
|
|
|
'allowed_methods' => ['*'],
|
|
|
|
|
2021-02-14 20:09:50 +01:00
|
|
|
'allowed_origins' => ['localhost:3000', 'pony.fm', 'stage.pony.fm'],
|
2021-02-14 19:57:25 +01:00
|
|
|
|
|
|
|
'allowed_origins_patterns' => [],
|
|
|
|
|
|
|
|
'allowed_headers' => ['*'],
|
|
|
|
|
|
|
|
'exposed_headers' => [],
|
|
|
|
|
|
|
|
'max_age' => 0,
|
|
|
|
|
|
|
|
'supports_credentials' => false,
|
|
|
|
|
2017-01-03 18:44:40 +01:00
|
|
|
];
|