test
This commit is contained in:
@@ -123,9 +123,4 @@ return [
|
||||
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
||||
],
|
||||
|
||||
'frontend' => [
|
||||
'dev' => env('DEV', false),
|
||||
'dev_url' => env('FRONTEND_DEV_URL', 'http://localhost:5173'),
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
+3
-4
@@ -19,10 +19,9 @@ return [
|
||||
|
||||
'allowed_methods' => ['*'],
|
||||
|
||||
'allowed_origins' => config('app.frontend.dev')
|
||||
? [config('app.frontend.dev_url')]
|
||||
: ['*'],
|
||||
|
||||
'allowed_origins' => env('DEV', false)
|
||||
? ['http://localhost:5173', 'http://localhost:5174', 'http://localhost', 'http://localhost:80']
|
||||
: [env('APP_URL', 'http://localhost')],
|
||||
|
||||
'allowed_origins_patterns' => [],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user