Skip to content

Commit

Permalink
πŸ› CORS 였λ₯˜ μˆ˜μ •
Browse files Browse the repository at this point in the history
- 배포 μ‹œ λ°œμƒν•˜λŠ” CORS 였λ₯˜λ₯Ό μˆ˜μ •ν•˜μ˜€μŠ΅λ‹ˆλ‹€.
  • Loading branch information
Ganghee-Lee-0522 committed Jan 11, 2024
1 parent 4bb193c commit 41852a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public CorsFilter corsFilter() {

config.addAllowedOrigin("http://localhost");
config.addAllowedOrigin("http://localhost:*");
config.addAllowedOrigin("http://localhost:5173");
config.addAllowedOrigin("https://kidari.site");
config.addAllowedOrigin("https://api.github.com"); // κΉƒν—ˆλΈŒ API 도메인
config.addAllowedOrigin("https://github.com"); // κΉƒν—ˆλΈŒ 인증 μ„Όν„° 도메인
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ feign:
client:
config:
default:
logger-level: FULL
logger-level: INFO

logging:
level:
Expand Down

0 comments on commit 41852a2

Please sign in to comment.