We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53e0ffa commit cc4124dCopy full SHA for cc4124d
src/main.ts
@@ -17,10 +17,10 @@ async function bootstrap() {
17
// Create logger instance for application bootstrap
18
const logger = LoggerService.forRoot('Bootstrap');
19
20
- // Global prefix for all routes in production is configured as `/v5/review`
+ // Global prefix for all routes in production is configured as `/v6/review`
21
if (process.env.NODE_ENV === 'production') {
22
- app.setGlobalPrefix('/v5/review');
23
- logger.log('Setting global prefix to /v5/review in production mode');
+ app.setGlobalPrefix('/v6/review');
+ logger.log('Setting global prefix to /v6/review in production mode');
24
}
25
26
// CORS related settings
0 commit comments