modified session attributes for Dev env| added login dev route for local development

This commit is contained in:
2024-07-09 09:58:14 +00:00
parent 2640a7354f
commit f8c7233427
6 changed files with 87 additions and 77 deletions

View File

@@ -21,11 +21,12 @@ return [
* You can enable CORS for 1 or multiple paths.
* Example: ['api/*']
*/
'paths' => ['api/public/*', 'public/*'],
// 'paths' => ['api/public/*', 'public/*'],
'paths' => ['*'],
/*
* Matches the request method. `[*]` allows all methods.
*/
* Matches the request method. `[*]` allows all methods.
*/
'allowed_methods' => ['*'],
/*
@@ -56,5 +57,5 @@ return [
/*
* Sets the Access-Control-Allow-Credentials header.
*/
'supports_credentials' => false,
'supports_credentials' => true,
];