We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2085bb commit a627bd7Copy full SHA for a627bd7
src/main/java/com/be/sportizebe/global/config/SwaggerConfig.java
@@ -25,13 +25,13 @@ public OpenAPI customOpenAPI() {
25
26
// 운영 서버
27
Server prodServer = new Server();
28
- prodServer.setUrl("https://api.insa-exhibition.shop");
+ prodServer.setUrl("");
29
prodServer.setDescription("🚀 운영 서버");
30
31
return new OpenAPI()
32
.addServersItem(localServer)
33
.addServersItem(prodServer)
34
- .info(new Info().title("Swagger API 명세서").version("1.0").description("PBL-kiosk-App"));
+ .info(new Info().title("Swagger API 명세서").version("1.0").description("Sportize API docs"));
35
}
36
37
@Bean
0 commit comments