mirror of
https://github.com/2234839/web-font.git
synced 2025-04-05 20:35:50 +08:00
14 lines
287 B
TypeScript
14 lines
287 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
import serveStatic from 'serve-static';
|
|
import { Response } from 'express';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
|
|
|
|
await app.listen(3000);
|
|
}
|
|
bootstrap();
|
|
|