Skip to content

Instantly share code, notes, and snippets.

@msbaek
Created March 11, 2024 02:39
Show Gist options
  • Save msbaek/8d5dee54dcd6657a90d2ba63dc6dd783 to your computer and use it in GitHub Desktop.
Save msbaek/8d5dee54dcd6657a90d2ba63dc6dd783 to your computer and use it in GitHub Desktop.
@Configuration
class CorsConfiguration {
@Bean
WebMvcConfigurer corsConfigurer() {
return new WebMvcConfigurer() {
@Override
public void addCorsMappings(final CorsRegistry registry) {
registry.addMapping("/**")
.allowedHeaders("*")
.allowedMethods("*")
.allowedOriginPatterns(
"http://localhost:3000",
"https://*.myservice.com",
"http://*.myservice.io");
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment