We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2f1e2de + d97e75f commit ee29feeCopy full SHA for ee29fee
1 file changed
src/main/java/com/ODG/ODG_back/security/config/CorsConfig.java
@@ -16,6 +16,7 @@ public CorsConfigurationSource corsConfigurationSource() {
16
17
// 프론트 연동 후 localhost 부분 삭제 필수
18
configuration.setAllowedOriginPatterns(Arrays.asList(
19
+ "*",
20
"http://localhost:*",
21
"https://localhost:*",
22
"https://o-digo.com"
@@ -35,4 +36,4 @@ public CorsConfigurationSource corsConfigurationSource() {
35
36
source.registerCorsConfiguration("/**", configuration);
37
return source;
38
}
-}
39
+}
0 commit comments