We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c24fd95 commit 4f78fcfCopy full SHA for 4f78fcf
src/main.ts
@@ -9,8 +9,8 @@ import { AppModule } from './app.module';
9
async function bootstrap() {
10
const app = await NestFactory.create<NestExpressApplication>(AppModule);
11
12
- // Global prefix for all routes is configured as `/v5/payments`
13
- app.setGlobalPrefix(process.env.API_BASE ?? '/v5/payments');
+ // Global prefix for all routes is configured as `/v5/finance`
+ app.setGlobalPrefix(process.env.API_BASE ?? '/v5/finance');
14
15
// CORS related settings
16
const corsConfig: cors.CorsOptions = {
0 commit comments