| import { NestFactory } from '@nestjs/core'; |
| import { AppModule } from './app.module'; |
| import * as bodyParser from 'body-parser'; |
| import { ValidationPipe } from '@nestjs/common'; |
|
|
| async function bootstrap() { |
| const app = await NestFactory.create(AppModule); |
|
|
| app.useGlobalPipes(new ValidationPipe()); |
|
|
| |
| app.enableCors({ |
| |
| origin: ['https://property-fe-h8e2.vercel.app', 'http://localhost:3000'], |
| methods: '*', |
| credentials: true, |
| }); |
|
|
| app.use(bodyParser.urlencoded({ extended: true })); |
| app.use(bodyParser.json()); |
|
|
| await app.listen(8080); |
| } |
| bootstrap(); |
|
|