From 1d5258db0062a876dc42e3026b0a75791332c97e Mon Sep 17 00:00:00 2001 From: scarf Date: Thu, 7 Dec 2023 14:24:00 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20`dev/v2`=20=EA=B2=BD=EB=A1=9C=20?= =?UTF-8?q?=EB=B3=B5=EA=B5=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- backend/src/app.ts | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/backend/src/app.ts b/backend/src/app.ts index c471143f..ed62e1b4 100644 --- a/backend/src/app.ts +++ b/backend/src/app.ts @@ -78,12 +78,12 @@ app.use( // dev route app.use('/api', router); -// // dev/v2 route -// createExpressEndpoints(contract, routerV2, app, { -// logInitialization: true, -// responseValidation: true, -// jsonQuery: true, -// }); +// dev/v2 route +createExpressEndpoints(contract, routerV2, app, { + logInitialization: true, + responseValidation: true, + jsonQuery: true, +}); // 에러 핸들러 app.use(errorConverter);