6 |--------------------------------------------------------------------------
7 | Cross-Origin Resource Sharing (CORS) Configuration
8 |--------------------------------------------------------------------------
10 | Here you may configure your settings for cross-origin resource sharing
11 | or "CORS". This determines what cross-origin operations may execute
12 | in web browsers. You are free to adjust these settings as needed.
14 | To learn more: https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS
18 'paths' => ['api/*', 'sanctum/csrf-cookie'],
20 'allowed_methods' => ['*'],
22 'allowed_origins' => ['*'],
24 'allowed_origins_patterns' => [],
26 'allowed_headers' => ['*'],
28 'exposed_headers' => [],
32 'supports_credentials' => false,