Skip to content

Commit

Permalink
[Fix/#86] SwaggerConfig내 dev 서버의 URL 정보를 추가한다 (#88)
Browse files Browse the repository at this point in the history
SecurityConfig 내의 package 구조가 잘못 설정되어있어서 정상적으로 변경했습니다.

* fix: swaggerConfig에 dev 서버 url 명시 (#86)
  • Loading branch information
jemlog authored Oct 5, 2023
1 parent 00b52be commit 4c75253
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/backend/global/config/SwaggerConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ public OpenAPI openAPI() {
testServer.setUrl("http://192.168.1.190:8080");

return new OpenAPI()
.addServersItem(new Server().url("https://milestone-staging.site"))
.addServersItem(new Server().url("/"))
.info(
new Info()
Expand Down

0 comments on commit 4c75253

Please sign in to comment.