Skip to content

Commit

Permalink
Revert "cors 설정을 스프링 코드에서 제거"
Browse files Browse the repository at this point in the history
  • Loading branch information
jminkkk authored Sep 6, 2024
1 parent 9bda868 commit 80a62ef
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package codezap.global.cors;

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

@Configuration
public class WebCorsConfiguration implements WebMvcConfigurer {

@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowCredentials(true)
.allowedOriginPatterns("https://*.code-zap.com")
.allowedOrigins("https://code-zap.com")
.allowedMethods("*")
.exposedHeaders("*");
}
}

0 comments on commit 80a62ef

Please sign in to comment.