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