Skip to content

Commit 8254bc5

Browse files
committed
chore : CORS 설정 변경
1 parent d3e4ce5 commit 8254bc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/example/lsa/common/auth/SecurityConfig.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class SecurityConfig(
3636
.cors { cors ->
3737
cors.configurationSource {
3838
val configuration = CorsConfiguration().apply {
39-
addAllowedOrigin("https://kgyuho.dev")
39+
addAllowedOrigin("https://study.kgyuho.dev")
4040
allowedMethods = listOf("GET", "POST", "PUT", "DELETE", "OPTIONS")
4141
allowedHeaders = listOf("*")
4242
allowCredentials = true

0 commit comments

Comments
 (0)