diff --git a/src/main/java/trothly/trothcam/config/WebConfig.java b/src/main/java/trothly/trothcam/config/WebConfig.java index a28a89f..7f7dce8 100644 --- a/src/main/java/trothly/trothcam/config/WebConfig.java +++ b/src/main/java/trothly/trothcam/config/WebConfig.java @@ -15,6 +15,7 @@ public void addCorsMappings(CorsRegistry registry) { .allowedMethods("*") // 허용할 HTTP method .allowCredentials(true) // 쿠키 인증 요청 허용 .allowedHeaders("*") + .allowedOrigins("*") .maxAge(3600L); // 원하는 시간만큼 pre-flight 리퀘스트를 캐싱 } } \ No newline at end of file