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.
1 parent 477ef93 commit 4fd4b72Copy full SHA for 4fd4b72
backend/src/main/java/com/cmg/comtogether/common/config/CorsConfig.java
@@ -15,7 +15,7 @@ public CorsConfigurationSource corsConfigurationSource() {
15
CorsConfiguration configuration = new CorsConfiguration();
16
configuration.setAllowedOrigins(Arrays.asList(
17
"http://localhost:3000",
18
- "https://com-togerther.vercel.app",
+ "https://com-together.vercel.app",
19
"https://com-together.org"
20
)); // 프론트 도메인
21
configuration.addAllowedMethod("*"); // 모든 HTTP 메서드 허용
0 commit comments