feat: add CORS configuration for backend API

This commit is contained in:
Jan K9f 2025-04-04 19:40:33 +02:00
parent b803055307
commit 042f1db9f8
Signed by: jank
GPG key ID: B9F475106B20F144

View file

@ -0,0 +1,15 @@
package de.szut.casino.config;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
public class CorsConfig implements WebMvcConfigurer {
public void addCorsMappings(CorsRegistry registry) {
registry.addMapping("/**")
.allowedOrigins("http://localhost:4200", "http://192.168.176.120:4200")
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
.allowedHeaders("*")
.allowCredentials(true)
.maxAge(3600);
}
}