import { NestFactory } from "@nestjs/core"; import { NestExpressApplication } from "@nestjs/platform-express"; import { join } from "path"; import { AppModule } from "./app.module"; async function bootstrap() { const app = await NestFactory.create(AppModule); app.useStaticAssets(join(__dirname, "frontend", "public")); app.setBaseViewsDir(join(__dirname, "frontend", "views")); app.setViewEngine("mustache"); await app.listen(3000); } bootstrap();