Fix Node built-in runtime imports

This commit is contained in:
Austin A
2026-04-25 23:05:20 +01:00
parent 2539c66c9f
commit 4b5fdd627b

View File

@@ -5,8 +5,8 @@ import cookieParser from "cookie-parser";
import { DocumentBuilder, SwaggerModule } from "@nestjs/swagger";
import { AllExceptionsFilter } from "./common/filters/all-exceptions.filter";
import * as express from "express";
import path from "node:path";
import fs from "node:fs";
import * as path from "node:path";
import * as fs from "node:fs";
async function bootstrap() {
const app = await NestFactory.create(AppModule, { bodyParser: false });