Skip to content

Commit

Permalink
Merge pull request #110 from IxxP-Girls/modify
Browse files Browse the repository at this point in the history
Fix: preflight 결과를 캐시에 저장하도록 수정
  • Loading branch information
diddnwjd committed Mar 11, 2024
2 parents 4fee437 + e9519be commit d762a74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/com/ixxp/culpop/config/WebSecurityConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ public void addCorsMappings(CorsRegistry registry) {
.allowedOrigins("http://localhost:8080", "https://localhost:5173", "http://43.202.13.38:8081", "https://www.culpop.shop", "https://my.culpop.shop", "https://a.culpop.vercel.app")
.allowedHeaders("Cookie")
.exposedHeaders("Set-Cookie")
.allowCredentials(true);
.allowCredentials(true)
.maxAge(3600);
}
}

0 comments on commit d762a74

Please sign in to comment.