From 9bbcf5ec3460acb33bf33926bea3d305558fa177 Mon Sep 17 00:00:00 2001 From: Lions Infrastructure Date: Thu, 26 Feb 2026 02:15:20 +0100 Subject: [PATCH] feat: Enable Swagger UI in production --- src/main/resources/application-prod.properties | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application-prod.properties b/src/main/resources/application-prod.properties index 2605dd6..7a9bca0 100644 --- a/src/main/resources/application-prod.properties +++ b/src/main/resources/application-prod.properties @@ -87,8 +87,8 @@ quarkus.log.file.enable=false # ============================================ # OpenAPI/Swagger Configuration PROD # ============================================ -quarkus.swagger-ui.always-include=false -quarkus.swagger-ui.enable=false +quarkus.swagger-ui.always-include=true +quarkus.swagger-ui.enable=true # ============================================ # Performance Tuning PROD