mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 18:44:46 +02:00
14 lines
305 B
PHP
14 lines
305 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'paths' => ['/api/client', '/api/application', '/api/client/*', '/api/application/*'],
|
|
|
|
'allowed_methods' => ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD'],
|
|
|
|
'allowed_origins' => explode(',', env('APP_CORS_ALLOWED_ORIGINS') ?? ''),
|
|
|
|
'supports_credentials' => true,
|
|
|
|
];
|