fix(cors): update allowed origins for CORS configuration

This commit is contained in:
Jan K9f 2025-04-04 20:16:20 +02:00
parent eaee0784ce
commit 285bad6a4b
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -9,7 +9,7 @@ public class CorsConfig implements WebMvcConfigurer {
@Override
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("*")
.allowedOrigins("http://localhost:8080", "http://192.168.176.120:4200")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("Origin", "Content-Type", "Accept", "Authorization", "X-Requested-With")
.allowCredentials(true)