fix(cors): update allowed origins for CORS configuration
This commit is contained in:
parent
eaee0784ce
commit
285bad6a4b
1 changed files with 1 additions and 1 deletions
|
@ -9,7 +9,7 @@ public class CorsConfig implements WebMvcConfigurer {
|
|||
@Override
|
||||
public void addCorsMappings(CorsRegistry registry) {
|
||||
registry.addMapping("/**")
|
||||
.allowedOrigins("*")
|
||||
.allowedOrigins("http://localhost:8080", "http://192.168.176.120:4200")
|
||||
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS")
|
||||
.allowedHeaders("Origin", "Content-Type", "Accept", "Authorization", "X-Requested-With")
|
||||
.allowCredentials(true)
|
||||
|
|
Loading…
Add table
Reference in a new issue