33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
import { BadRequestException, ValidationPipe } from '@nestjs/common';
|
|
import { ResponseInterceptor } from './common/interceptors/response.interceptor';
|
|
import { GlobalExceptionsFilter } from './common/filters/global.exceptions.filter';
|
|
import * as cookieParser from 'cookie-parser';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
app.use(cookieParser());
|
|
app.setGlobalPrefix('api');
|
|
app.useGlobalPipes(
|
|
new ValidationPipe({
|
|
transform: true,
|
|
whitelist: true,
|
|
forbidNonWhitelisted: true,
|
|
stopAtFirstError: true,
|
|
exceptionFactory: (errors) => {
|
|
const error = errors[0];
|
|
const firstConstraint = error.constraints
|
|
? Object.values(error.constraints)[0]
|
|
: '验证失败';
|
|
|
|
throw new BadRequestException(firstConstraint);
|
|
},
|
|
}),
|
|
);
|
|
app.useGlobalInterceptors(new ResponseInterceptor());
|
|
app.useGlobalFilters(new GlobalExceptionsFilter());
|
|
await app.listen(process.env.PORT ?? 3001);
|
|
}
|
|
bootstrap();
|