Skip to content

Commit

Permalink
๐Ÿ› CORS Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
so3659 committed Feb 9, 2025
1 parent 16b9cd8 commit 1b04978
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public void addCorsMappings(CorsRegistry corsRegistry) {
"https://kkoalla.app:5173",
"https://kkoalla.app:8443"
)
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedMethods("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true);
}
Expand Down

0 comments on commit 1b04978

Please sign in to comment.