Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // DOES WORK
- import { NestFactory } from '@nestjs/core';
- import { ExpressAdapter } from '@nestjs/platform-express';
- import { AppModule } from './app.module';
- async function bootstrap() {
- const app = await NestFactory.create(AppModule, new ExpressAdapter());
- await app.listen(3000);
- }
- bootstrap();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement