Skip to content

Commit 532449f

Browse files
committed
fix: Content-Disposition CORS 설정
1 parent daf2f21 commit 532449f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/com/gotogether/global/config/SecurityConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public CorsConfiguration getCorsConfiguration(HttpServletRequest request) {
8888
configuration.setAllowCredentials(true);
8989
configuration.setAllowedHeaders(List.of("*"));
9090
configuration.setMaxAge(3600L);
91-
configuration.setExposedHeaders(List.of("Set-Cookie"));
91+
configuration.setExposedHeaders(List.of("Set-Cookie", "Content-Disposition"));
9292

9393
return configuration;
9494
}

0 commit comments

Comments
 (0)