You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
return [
/*
|--------------------------------------------------------------------------
| 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
|
*/
'paths' => [ 'api/*' , 'sanctum/csrf-cookie' ],
'allowed_methods' => [ '*' ],
'allowed_origins' => [ '*' ],
/** 直连 API( 未走代理) 时兼容本地任意端口 */
'allowed_origins_patterns' => [
'#^http://localhost(:\d+)?$#' ,
'#^http://127\.0\.0\.1(:\d+)?$#' ,
],
'allowed_headers' => [ '*' ],
'exposed_headers' => [],
'max_age' => 0 ,
'supports_credentials' => false ,
];