2021-09-06 17:10:06 +02:00
|
|
|
import { NestFactory } from '@nestjs/core';
|
|
|
|
import { AppModule } from './app.module';
|
|
|
|
|
|
|
|
async function bootstrap() {
|
2021-09-06 21:55:38 +02:00
|
|
|
const app = await NestFactory.create(AppModule, {
|
|
|
|
cors: true,
|
|
|
|
});
|
|
|
|
app.setGlobalPrefix('api/v2');
|
|
|
|
|
|
|
|
await app.listen(8080);
|
2021-09-06 17:10:06 +02:00
|
|
|
}
|
|
|
|
bootstrap();
|