Skip to content

Commit

Permalink
[refactor] 서버 도메인 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
chahyunsoo committed Oct 4, 2024
1 parent 85a60ee commit dc749ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/ussum/homepage/global/config/CorsConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public CorsFilter corsFilter() {
config.setAllowCredentials(true);
config.addAllowedOrigin("http://localhost:5173");
config.addAllowedOrigin("http://localhost:3000");
config.addAllowedOrigin("https://stu.ssu.ac.kr");
config.addAllowedOrigin("https://sssupport.shop");
config.addAllowedOrigin("https://ssu-student-union.github.io");
config.addAllowedOrigin("https://homepage-frontend-dun.vercel.app");
config.addAllowedOrigin("https://homepage-frontend-psi.vercel.app");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public OpenAPI openAPI() {
.bearerFormat(JWT)
);
return new OpenAPI()
.addServersItem(new Server().url("https://stu.ssu.ac.kr"))
.addServersItem(new Server().url("https://sssupport.shop"))
.components(new Components())
.info(new Info())
.addSecurityItem(securityRequirement)
Expand Down

0 comments on commit dc749ea

Please sign in to comment.