This commit is contained in:
2023-09-04 21:38:17 -06:00
parent 100b4ebf50
commit 48d66db30f

View File

@@ -3,6 +3,7 @@ import { AppModule } from './app.module';
async function bootstrap() { async function bootstrap() {
const app = await NestFactory.create(AppModule); const app = await NestFactory.create(AppModule);
app.enableCors({origin: "*"});
await app.listen(3000); await app.listen(3000);
} }
bootstrap(); bootstrap();