create service feedback page

This commit is contained in:
An Vu
2024-10-06 20:38:07 +07:00
parent 8de46af300
commit 7b678a7ef2

View File

@@ -5,6 +5,6 @@ import { cors } from './common/utils/cors.utils';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AppModule); const app = await NestFactory.create(AppModule);
app.enableCors(cors); app.enableCors(cors);
await app.listen(3000); await app.listen(3069);
} }
bootstrap(); bootstrap();