From 1e111b0be2ef531d1e72420c641032600c4e198f Mon Sep 17 00:00:00 2001 From: faisolavolut Date: Mon, 10 Nov 2025 15:51:02 +0700 Subject: [PATCH] fix: Update versioned API route to include '/api/' prefix --- src/routes/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/index.ts b/src/routes/index.ts index 295e2e7..e687848 100644 --- a/src/routes/index.ts +++ b/src/routes/index.ts @@ -140,7 +140,7 @@ export const setRoutes = () => { versionRouter.post("/utilities/signature-service", (req, res) => tokenController.signatureBank(req, res) ); - router.use("/:version", versionRouter); + router.use("/api/:version", versionRouter); // Sync endpoints group const syncRouter = Router();