Skip to content

Commit 9166f78

Browse files
committed
[Fix] #190 - 배포 도메인 추가
1 parent a7267e9 commit 9166f78

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/dgu/sw/global/config/SecurityConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ public CorsConfigurationSource corsConfigurationSource() {
5959
CorsConfiguration config = new CorsConfiguration();
6060

6161
config.setAllowedOrigins(List.of(
62-
"http://localhost:5173"
63-
//"https://.vercel.app"
62+
"http://localhost:5173",
63+
"https://22s-web.vercel.app"
6464
));
6565

6666
config.setAllowedMethods(List.of("GET", "POST", "PUT", "DELETE", "PATCH", "OPTIONS"));

0 commit comments

Comments
 (0)