Skip to content

Instantly share code, notes, and snippets.

@thetwopct
Created July 9, 2021 04:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thetwopct/961ddfcafc719153ea9a80e769bfb9e8 to your computer and use it in GitHub Desktop.
Save thetwopct/961ddfcafc719153ea9a80e769bfb9e8 to your computer and use it in GitHub Desktop.
Allow Cross-origin resource sharing (CORS) for Laravel Livewire JS
[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"GET",
"PUT",
"POST",
"HEAD",
"DELETE"
],
"AllowedOrigins": [
"*"
],
"ExposeHeaders": [],
"MaxAgeSeconds": 3000
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment