Skip to content

Commit

Permalink
♻️ allow origin pattern 변경 app-dev에서 app.dev로 변경 (#273) (#274)
Browse files Browse the repository at this point in the history
  • Loading branch information
discphy authored Nov 25, 2024
1 parent a180ea3 commit 33dcfb2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class InterceptorConfig(
override fun addCorsMappings(registry: CorsRegistry) {
registry.addMapping("/**")
// TODO 환경 분리
.allowedOriginPatterns("https://app-dev.ahhachul.com", "https://dev.ahhachul.com", "http://localhost:3000", "http://localhost")
.allowedOriginPatterns("https://app.dev.ahhachul.com", "https://dev.ahhachul.com", "http://localhost:3000", "http://localhost")
.allowedMethods("GET", "POST", "PUT", "PATCH", "OPTIONS", "DELETE")
.allowedHeaders("*")
.allowCredentials(true)
Expand Down

0 comments on commit 33dcfb2

Please sign in to comment.