fix(trading-service): correct global prefix to match Kong routing

Change prefix from 'api/v2' to 'api/v2/trading' to match Kong gateway
configuration with strip_path: false.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
hailin 2026-01-15 05:26:11 -08:00
parent bb4143d75b
commit c60d3b2f26
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ async function bootstrap() {
credentials: true,
});
app.setGlobalPrefix('api/v2');
app.setGlobalPrefix('api/v2/trading');
const config = new DocumentBuilder()
.setTitle('Trading Service API')