web-font/src/main.ts
2020-03-19 17:34:41 +08:00

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();