Commit 2e202a3 1 parent b03315f commit 2e202a3 Copy full SHA for 2e202a3
File tree 1 file changed +2
-2
lines changed
packages/apps/job-launcher/server/src
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
import session from 'express-session' ;
2
2
import { NestFactory } from '@nestjs/core' ;
3
3
import { ConfigService } from '@nestjs/config' ;
4
- import { NestExpressApplication } from '@nestjs/platform-express' ;
5
4
import { DocumentBuilder , SwaggerModule } from '@nestjs/swagger' ;
6
5
import { json , urlencoded } from 'body-parser' ;
7
6
import { useContainer } from 'class-validator' ;
@@ -12,9 +11,10 @@ import { AppModule } from './app.module';
12
11
import { ConfigNames } from './common/config' ;
13
12
import { createWriteStream } from 'fs' ;
14
13
import { get } from 'http' ;
14
+ import { INestApplication } from '@nestjs/common' ;
15
15
16
16
async function bootstrap ( ) {
17
- const app = await NestFactory . create < NestExpressApplication > ( AppModule , {
17
+ const app = await NestFactory . create < INestApplication > ( AppModule , {
18
18
cors : true ,
19
19
} ) ;
20
20
You can’t perform that action at this time.
0 commit comments