79305426

Date: 2024-12-24 11:17:47
Score: 1
Natty:
Report link

Try allowing all paths when you set allowed origins.
So change this
configuration.setAllowedOrigins(List.of("http://localhost:4200"));

to something like this:
configuration.setAllowedOrigins(List.of("http://localhost:4200/**"));

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: crunchy_pasta