Skip to content

Commit

Permalink
fix: CORS 에러 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
birdieHyun committed Jan 18, 2024
1 parent 26cba54 commit dc0e739
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/yonseigolf/server/config/WebConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ public void addInterceptors(InterceptorRegistry registry) {

registry.addInterceptor(defaultInterceptor)
.addPathPatterns("/users/signIn")
.addPathPatterns("/users/loggedIn")
.addPathPatterns("/boards/**")
.addPathPatterns("/replies/**");

Expand Down

0 comments on commit dc0e739

Please sign in to comment.