Closed erikig closed 6 years ago
Seems like the CORS config was looking for origins data in the global environment.
Got this to work by updating config/cors.php
'allowedOrigins' => env('CORS_ALLOWED_ORIGINS') ? explode(',', env('CORS_ALLOWED_ORIGINS')) : ['*'],
with
'allowedOrigins' => ['*'],
Running the laravel backend against any of the front-ends results in a 403 Error: