fix(cors): update CORS to allow all origins

This commit is contained in:
Jan K9f 2025-04-04 20:12:05 +02:00
parent 06d418615c
commit eaee0784ce
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("http://localhost:4200", "http://192.168.176.120:4200")
.allowedOrigins("*")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("Origin", "Content-Type", "Accept", "Authorization", "X-Requested-With")
.allowCredentials(true)