Last active
March 1, 2022 16:23
-
-
Save marcomessa/54d077a0208439f5340126ff629a3718 to your computer and use it in GitHub Desktop.
Avoid Firefox and Safari 404 error in preflight request from Nuxt.js app to Laravel / OctoberCMS API.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// When using Nuxt.js in universal mode, bounded to extra domain API written in OctoberCMS, | |
// this solves CORS issue in Firefox and Safari (network error during page change) | |
Route::options('/{any}', function() { | |
$headers = [ | |
'Access-Control-Allow-Methods'=> 'POST, GET, OPTIONS, PUT, DELETE', | |
'Access-Control-Allow-Headers'=> 'X-Requested-With, Content-Type, X-Auth-Token, Origin, Authorization' | |
]; | |
return \Response::make('You are connected to the API', 200, $headers); | |
})->where('any', '.*'); |
I'm glad these notes were able to help someone! In my case the problem was related to how CORS were applied: headers sent did not meet the requirements of firefox or safari. It was not an October issue, if I remember well I used a third party plugin for cors, maybe I misconfigured it or maybe it was its fault! Anyway, I saved in my bookmarks this article which cover the argument more in detail, and offer a more elegant solution.
Happy coding!
Nice, Thanks!
🙌
Thanks a lot, it's working also !
I spent many months on CORS and JWT, without help and was seriously considering to move to Strapi which handles JWT natively...
Glad to be helpful!
Very valuable information. Thanks!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @marcomessa ! This solves my CORS issue.
I'm new to OctoberCMS and I'm afraid I don't have your level of expertise. Can you expand a little so I can better understand what's happening?
Thank sagain!