1
0
forked from PGL/Clyde

Putting the right configuration for cors

This commit is contained in:
2024-03-13 18:57:11 +01:00
committed by Debucquoy Anthony
parent 4c5cae7ff5
commit c26972369f
5 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@ import java.util.Map;
@RestController
@CrossOrigin(origins = "http://localhost:5173")
@CrossOrigin(originPatterns = "*", allowCredentials = "true")
public class UserController {
private final UserService userService;