tab name changes, aypos button, removed area related tabs

This commit is contained in:
2025-07-28 23:34:22 +03:00
parent a58e010561
commit 259a4804ff
13 changed files with 55 additions and 193 deletions

View File

@@ -14,7 +14,7 @@ public class CORSConfig {
public CorsFilter corsFilter() {
CorsConfiguration config = new CorsConfiguration();
config.setAllowCredentials(true);
config.addAllowedOrigin("http://localhost:8080");
config.addAllowedOrigin("http://localhost:3000");
config.addAllowedHeader("*");
config.addAllowedOriginPattern("*");
config.addAllowedMethod(CorsConfiguration.ALL);